Skip to main content

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

Initializes a new instance of the PdfXYZDestination class with the specified parameters.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v23.2.Core.dll

NuGet Package: DevExpress.Pdf.Core

Declaration

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

Parameters

Name Type Description
page PdfPage

The page to which the destination should refer.

left Nullable<Double>

The X coordinate of a point that is positioned at at the top left corner of the document window.

top Nullable<Double>

The Y coordinate of a point that is positioned at at the top left corner of the document window.

zoom Nullable<Double>

The zoom factor.

Remarks

If any of these values is null, the current coordinate (left, top) or zoom factor is retained when the destination is applied.

See Also