PHPRtfLite::setZoomMode PHP Method

setZoomMode() public method

sets the zoom mode of the document
public setZoomMode ( integer $zoomMode )
$zoomMode integer zoom mode. Represented as class constants. Possible values:
ZOOM_MODE_NONE => 0 - None
ZOOM_MODE_FULL_PAGE => 1 - Full Page
ZOOM_MODE_BEST_FIT => 2 - Best Fit
    public function setZoomMode($zoomMode)
    {
        $this->_zoomMode = $zoomMode;
    }