XYZExplicitDestination Class |
Namespace: Aspose.Pdf.Annotations
The XYZExplicitDestination type exposes the following members.
Name | Description | |
---|---|---|
![]() | XYZExplicitDestination(Int32, Double, Double, Double) |
Creates remote explicit destination.
|
![]() | XYZExplicitDestination(Page, Double, Double, Double) |
Creates local explicit destination.
|
![]() | XYZExplicitDestination(Document, Int32, Double, Double, Double) | Obsolete.
Creates remote explicit destination.
|
Name | Description | |
---|---|---|
![]() | Left |
Gets left horizontal coordinate of the upper-left corner of the window.
|
![]() | Page |
Gets the destination page object
(Inherited from ExplicitDestination.) |
![]() | PageNumber |
Gets the destination page number
(Inherited from ExplicitDestination.) |
![]() | Top |
Gets top vertical coordinate of the upper-left corner of the window.
|
![]() | Zoom |
Gets zoom factor.
|
Name | Description | |
---|---|---|
![]() ![]() | CreateDestination |
Create destintion to specified location of the page considering page rotation if required.
|
![]() ![]() | CreateDestinationToUpperLeftCorner(Page) |
Create destination to specified page.
|
![]() ![]() | CreateDestinationToUpperLeftCorner(Page, Double) |
Create destionation to upper left corner of the specifed page.
|
![]() | Equals | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | ToString |
Converts the object state into string value. Example: "1 XYZ 100 200 3".
(Overrides ExplicitDestinationToString.) |
Document doc = new Document("example.pdf"); XYZExplicitDestination dest = (XYZExplicitDestination)doc.Outlines[1].Destination; string left = dest.Left; string top = dest.Top; string zoom = dest.Zoom;