Table of Contents

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 PdfPage

The destination page

ExplicitDestination(PdfPage, PointF)

Constructs a destination to the specified location in the specified page

public ExplicitDestination(PdfPage page, PointF point)

Parameters

page PdfPage

The destination page

point PointF

The destination point in page

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 PdfPage

The destination page

point PointF

The destination point in page

viewMode DestinationViewMode

The destination view mode

Properties

DestPage

Gets or sets the destination page.

public PdfPage DestPage { get; set; }

Property Value

PdfPage

Point

Gets or sets the destination point in destination page.

public PointF Point { get; set; }

Property Value

PointF

ViewMode

Gets or sets the view mode of the destination page.

public DestinationViewMode ViewMode { get; set; }

Property Value

DestinationViewMode

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; }

Property Value

int