Class AnnotationRemoveEventArgs
This event arguments provides the necessary information about annotation remove event.
Inheritance
System.Object
AnnotationRemoveEventArgs
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class AnnotationRemoveEventArgs : AnnotationBaseEventArgs<AnnotationRemoveEventArgs>
Constructors
AnnotationRemoveEventArgs()
Declaration
public AnnotationRemoveEventArgs()
Properties
Bound
Gets the bound of the annotations.
Declaration
public Bound Bound { get; }
Property Value
Type | Description |
---|---|
Bound | A Bound object representing the bounding rectangle of the annotations. |
Remarks
It is not applicable for text markup annotation.
Bounds
Gets the textmark annotation bounds details.
Declaration
public List<Bound> Bounds { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Bound> | A list of Bound objects representing the bounds of the text markup annotation. |
MultiplePageCollection
Defines 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. |
TextMarkupContent
Defines the selected text content in the text markup annotation.
Declaration
public string TextMarkupContent { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
TextMarkupEndIndex
End index of text markup annotation in the page text content.
Declaration
public int TextMarkupEndIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
TextMarkupStartIndex
Starting index of text markup annotation in the page text content.
Declaration
public int TextMarkupStartIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |