Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PdfXYZDestination(PdfPage, Nullable<Double>, Nullable<Double>, Nullable<Double>) Constructor

Initializes a new instance of the PdfXYZDestination class with the specified page, top and left coordinates that will be shown on the upper-left corner of the window, and zoom level to show the page.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v19.1.Core.dll

Declaration

public PdfXYZDestination(
    PdfPage page,
    double? left,
    double? top,
    double? zoom
)

Parameters

Name Type Description
page PdfPage

A PdfPage object that is the PDF page with contents.

left Nullable<Double>

A nullable double value that is the left page coordinate.

top Nullable<Double>

A nullable double value that is the top page coordinate.

zoom Nullable<Double>

A nullable double value that is the zoom factor by which the page is magnified.

Remarks

If any of these values is null, it means that the current coordinate (left, top) or zoom factor will not be changed when the destination is applied.

See Also