Class AnnotationEventArgs
Raised for annotation events; provides the affected page, the annotation, and a handled flag.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Annotations.EventArgs
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class AnnotationEventArgs : EventArgs
Properties
Annotation
Gets or sets the annotation instance associated with the event.
Declaration
public Annotation Annotation { get; set; }
Property Value
|
Annotation
The affected annotation. |
Handled
Gets or sets whether the event is handled, preventing further processing.
Declaration
public bool Handled { get; set; }
Property Value
|
System.Boolean
|
Page
Gets or sets the page that contains the annotation involved in the event.
Declaration
public RadFixedPage Page { get; set; }
Property Value
|
RadFixedPage
The page holding the annotation. |