PDFViewCtrlSetZoomLimits Method |
Sets the minimum and maximum zoom bounds of PDFViewCtrl.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetZoomLimits(
ZoomLimitMode zoom_limit_mode,
double min_zoom,
double max_zoom
)
Public Sub SetZoomLimits (
zoom_limit_mode As ZoomLimitMode,
min_zoom As Double,
max_zoom As Double
)
public:
virtual void SetZoomLimits(
[InAttribute] ZoomLimitMode zoom_limit_mode,
[InAttribute] double min_zoom,
[InAttribute] double max_zoom
) sealed
function SetZoomLimits(zoom_limit_mode, min_zoom, max_zoom);
Parameters
- zoom_limit_mode
- Type: pdftron.PDFZoomLimitMode
Defines how the minimum and maximum zoom bounds are used. Possible values are:
e_zoom_limit_absoluteBounds are in absolute sense.e_zoom_limit_relativeThis view mode is deprecated. Use SetRelativeZoomLimits insteade_zoom_limit_noneZoom bounds are not used
PDFViewCtrl limits the minimum zoom bound to 0.01
and the maximum zoom bound to 500.0.
The minimum zoom bound.
The maximum zoom bound.
- min_zoom
- Type: SystemDouble
[Missing <param name="min_zoom"/> documentation for "M:pdftron.PDF.PDFViewCtrl.SetZoomLimits(pdftron.PDF.ZoomLimitMode,System.Double,System.Double)"]
- max_zoom
- Type: SystemDouble
[Missing <param name="max_zoom"/> documentation for "M:pdftron.PDF.PDFViewCtrl.SetZoomLimits(pdftron.PDF.ZoomLimitMode,System.Double,System.Double)"]
See Also