LinkAnnotationDestination Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets or sets a destination that shall be displayed when the annotation is activated.

Namespace:  Apitron.PDF.Kit.Interactive.Annotations
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public Destination Destination { get; set; }

Property Value

Type: Destination
The destination.
Examples

C#
LinkAnnotation link = new LinkAnnotation( new Boundary(10, 170, 100, 190), AnnotationFlags.Locked, new AnnotationBorderStyle(5, AnnotationBorderType.Beveled));
link.Destination = new Destination(3); // to the 3rd page
See Also

Reference