Class AnnotationSelectEventArgs
This event arguments provides the necessary information about annotation select event.
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class AnnotationSelectEventArgs : BaseEventArgs<AnnotationSelectEventArgs>
Constructors
AnnotationSelectEventArgs()
Declaration
public AnnotationSelectEventArgs()
Properties
AnnotationCollection
Defines the overlapped annotations of the selected annotation.
Declaration
public List<PdfAnnotation> AnnotationCollection { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<PdfAnnotation> | A list of PdfAnnotation objects that overlap with the currently selected annotation. |
AnnotationId
Defines the id of the annotation selected in the page of the PDF document.
Declaration
public string AnnotationId { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
AnnotationProperties
Defines the annotation selected in the PDF document.
Declaration
public PdfAnnotationProperties AnnotationProperties { get; }
Property Value
Type | Description |
---|---|
PdfAnnotationProperties | A PdfAnnotationProperties object representing the properties of the selected PDF annotation. |
IsProgrammaticSelection
Defines the annotation selection by mouse.
Declaration
public bool IsProgrammaticSelection { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
MultiplePageCollection
Gets the multi page annotation collections.
Declaration
public List<PdfAnnotation> MultiplePageCollection { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<PdfAnnotation> | A list of PdfAnnotation objects that span multiple pages of the PDF document. |
Remarks
It is applicable only set EnableMultiPageAnnotation as true. This support has been provided only for Textmarkup annotation.
PageNumber
Gets the page number in which the annotation is selected.
Declaration
public int PageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |