Initializes a new instance of PdfDestination.

Namespace: Spire.Pdf.General
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfDestination(
	int pageNumber,
	PointF location,
	float zoom
)
Public Sub New ( 
	pageNumber As Integer,
	location As PointF,
	zoom As Single
)
public:
PdfDestination(
	int pageNumber, 
	PointF location, 
	float zoom
)
new : 
        pageNumber : int * 
        location : PointF * 
        zoom : float32 -> PdfDestination

Parameters

pageNumber
Int32
The zero based page number.
location
PointF
The location in the page based on the lower-left coordinate system.
zoom
Single
The zoom factor.

See Also