Class AnnotationPressedEventArgs

Arguments for the Controller's AnnotationPressed event.

Inheritance
System.Object
AnnotationPressedEventArgs
Namespace: PSPDFKit.UI
Assembly: PSPDFKit.dll
Syntax
public sealed class AnnotationPressedEventArgs

Properties

Annotation

The selected annotation object.

Declaration
public IAnnotation Annotation { get; set; }
Property Value
Type Description
IAnnotation

IsSelected

Whether or not the annotation was already selected.

Declaration
public bool IsSelected { get; set; }
Property Value
Type Description
System.Boolean

Pointer

Class containing pointer information.

Declaration
public PointerData Pointer { get; set; }
Property Value
Type Description
PointerData

PreventDefault

Whether or not to prevent the default Annotation press behavior. Can only be used in synchronous event handlers.

Declaration
public bool PreventDefault { get; set; }
Property Value
Type Description
System.Boolean