Class ExplicitDestination
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Represents a destination in the PDF document for links, bookmarks and other interactive PDF features.
[ClassInterface(ClassInterfaceType.AutoDual)]
public class ExplicitDestination
- Inheritance
-
ExplicitDestination
- Inherited Members
Constructors
ExplicitDestination()
Creates an empty explicit destination. The DestPage property must be set after object creation
public ExplicitDestination()
ExplicitDestination(PdfPage)
Constructs a destination to the specified page
public ExplicitDestination(PdfPage page)
Parameters
page
PdfPageThe destination page
ExplicitDestination(PdfPage, PointF)
Constructs a destination to the specified location in the specified page
public ExplicitDestination(PdfPage page, PointF point)
Parameters
ExplicitDestination(PdfPage, PointF, DestinationViewMode)
Constructs a destination to the specified location in the specified page and with the specified view mode of the destination page
public ExplicitDestination(PdfPage page, PointF point, DestinationViewMode viewMode)
Parameters
page
PdfPageThe destination page
point
PointFThe destination point in page
viewMode
DestinationViewModeThe destination view mode
Properties
DestPage
Gets or sets the destination page.
public PdfPage DestPage { get; set; }
Property Value
Point
Gets or sets the destination point in destination page.
public PointF Point { get; set; }
Property Value
ViewMode
Gets or sets the view mode of the destination page.
public DestinationViewMode ViewMode { get; set; }
Property Value
ZoomPercentage
Gets or sets the zoom percentage of the destination page when viewed in the viewer and the view mode is XYZ (for example a 100 value will not zoom the page).
public int ZoomPercentage { get; set; }