Class FreeTextAnnotationSelectedEventArgs
Provides data for the FreeTextAnnotationSelected event.
Inheritance
System.Object
FreeTextAnnotationSelectedEventArgs
Namespace: Syncfusion.SfPdfViewer.iOS
Assembly: Syncfusion.SfPdfViewer.iOS.dll
Syntax
public class FreeTextAnnotationSelectedEventArgs : EventArgs
Constructors
FreeTextAnnotationSelectedEventArgs(CGRect, String, Single, UIColor, Int32)
Instantiates a new instance of the FreeTextAnnotationSelectedEventArgs class.
Declaration
public FreeTextAnnotationSelectedEventArgs(CGRect bounds, string text, float fontSize, UIColor textColor, int pageNumber)
Parameters
Type | Name | Description |
---|---|---|
CoreGraphics.CGRect | bounds | The bounds of the free text annotation within the page. |
System.String | text | The text appearing in the free text annotation. |
System.Single | fontSize | The font size of the text in free text annotation. |
UIKit.UIColor | textColor | The text color of the free text annotation. |
System.Int32 | pageNumber | The page number in which the free text appears. |
Properties
Bounds
Gets the bounds of the selected text annotation.
Declaration
public CGRect Bounds { get; }
Property Value
Type |
---|
CoreGraphics.CGRect |
OverlappedAnnotations
Gets the list of annotations that overlap the selected annotation.
Declaration
public List<IAnnotation> OverlappedAnnotations { get; }
Property Value
Type |
---|
System.Collections.Generic.List<IAnnotation> |
PageNumber
Gets the pagenumber of the selected text annotation.
Declaration
public int PageNumber { get; }
Property Value
Type |
---|
System.Int32 |
Text
Gets the text of the selected text annotation.
Declaration
public string Text { get; }
Property Value
Type |
---|
System.String |
TextColor
Gets the color of the selected text annotation.
Declaration
public UIColor TextColor { get; }
Property Value
Type |
---|
UIKit.UIColor |
TextSize
Gets the Font size of the selected text annotation.
Declaration
public float TextSize { get; }
Property Value
Type |
---|
System.Single |