[]
Display the page designated by Destination#page, with the coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom. A null value for any of the parameters left, top, or zoom specifies that the current value of that parameter is to be retained unchanged. A zoom value of 0 has the same meaning as a null value.
new DestinationXYZ(
om,
pageIndex,
left?,
pdfTop?,
zoom?): DestinationXYZ;
Initializes a new instance of the DestinationXYZ class.
Note that all Y coordinates should be specified relative to the bottom of the page.
ObjectManager that controls the lifetime of the DestinationXYZ.
number
The target page index.
number
The left coordinate of the document window.
number
The top coordinate of the document window relative to the bottom of the page.
number
The zoom factor of the document window.
DestinationXYZ
Destination.constructor
new DestinationXYZ(
pageIndex,
left?,
pdfTop?,
zoom?): DestinationXYZ;
Initializes a new instance of the DestinationXYZ class.
Note that all Y coordinates should be specified relative to the bottom of the page.
number
The target page index.
number
The left coordinate of the document window.
number
The top coordinate of the document window relative to the bottom of the page.
number
The zoom factor of the document window.
DestinationXYZ
Destination.constructor
new DestinationXYZ(
om,
page,
left?,
top?,
zoom?): DestinationXYZ;
Initializes a new instance of the DestinationXYZ class.
ObjectManager that controls the lifetime of the DestinationXYZ.
The target PdfPage.
number
The left coordinate of the document window.
number
The top coordinate of the document window relative to the top of the page.
number
The zoom factor of the document window.
DestinationXYZ
Destination.constructor
new DestinationXYZ(
page,
left?,
top?,
zoom?): DestinationXYZ;
Initializes a new instance of the DestinationXYZ class.
The target PdfPage.
number
The left coordinate of the document window.
number
The top coordinate of the document window relative to the top of the page.
number
The zoom factor of the document window.
DestinationXYZ
Destination.constructor
new DestinationXYZ(
om,
structElement,
left?,
pdfTop?,
zoom?): DestinationXYZ;
Initializes a new instance of the DestinationXYZ class.
Note that all Y coordinates should be specified relative to the bottom of the page.
ObjectManager that controls the lifetime of the DestinationXYZ.
The StructElement used to obtain the target page.
number
The left coordinate of the document window.
number
The top coordinate of the document window relative to the bottom of the page.
number
The zoom factor of the document window.
DestinationXYZ
Destination.constructor
new DestinationXYZ(
structElement,
left?,
pdfTop?,
zoom?): DestinationXYZ;
Initializes a new instance of the DestinationXYZ class.
Note that all Y coordinates should be specified relative to the bottom of the page.
The StructElement used to obtain the target page.
number
The left coordinate of the document window.
number
The top coordinate of the document window relative to the bottom of the page.
number
The zoom factor of the document window.
DestinationXYZ
Destination.constructor
get id(): number;
Gets the reference to the object.
number
get left(): number;
Gets the left coordinate of the document window, if null then unchanged.
number
get om(): ObjectManager;
Gets the owner ObjectManager instance.
get page(): PdfPage;
Gets this destination's target PdfPage object. Returns null if the target page was specified by index.
get pageIndex(): number;
Gets the index of this destination's target page. Returns null if the target page was specified as a PdfPage object.
Note that if this property is not null, then any Y coordinate is relative to the bottom left corner (see Destination description for details).
number
get pdfTop(): number;
Gets the top coordinate of the document window relative to the bottom left corner, unchanged if null.
number
get top(): number;
Gets the top coordinate of the document window, if null then unchanged.
If the target page of this destination was specified as an index (Destination#pageIndex), then this property returns the Y coordinate relative to the page bottom. If the target page was specified as a page object (see Destination#page), then this property returns the Y coordinate relative to the page top. See Destination description for details.
number
get zoom(): number;
Gets the zoom factor of the document window, unchanged if null or zero.
number
free(): void;
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(omTo): void;
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void