LinkAnnotationHighlightingMode Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets or sets the annotation’s highlighting mode, the visual effect that shall be used when the mouse button is pressed or held down inside its active area

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 AnnotationHighlightingMode HighlightingMode { get; set; }

Property Value

Type: AnnotationHighlightingMode
The highlighting mode.
Examples

C#
LinkAnnotation link = new LinkAnnotation( new Boundary(10, 170, 100, 190), AnnotationFlags.Locked, new AnnotationBorderStyle(5, AnnotationBorderType.Beveled));
link.HighlightingMode = AnnotationHighlightingMode.Invert;
See Also

Reference