PdfDestinationPointZoomAction Method |
A factory method for making a PdfGoToViewAction with a PdfDestination with PointZoom as its PageFitMode.
Namespace:
Atalasoft.PdfDoc
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public static PdfGoToViewAction PointZoomAction(
int pageIndex,
PointF position,
double zoom
)
Public Shared Function PointZoomAction (
pageIndex As Integer,
position As PointF,
zoom As Double
) As PdfGoToViewAction
Parameters
- pageIndex
- Type: SystemInt32
Index of the page. - position
- Type: System.DrawingPointF
The position to be zoomed in on in PDF page coordinates
- zoom
- Type: SystemDouble
The zoom level of the view. Zoom is a multiplier: 1.0 will be normal size.
0.5 will be half size, etc. 0 or null means "use current zoom"
Return Value
Type:
PdfGoToViewActionA PdfGoToViewAction with a PointZoom destination
See Also