Class TextFoundEventArgs
Provides the data for the TextFound event.
Inheritance
System.Object
TextFoundEventArgs
Namespace: Syncfusion.Windows.PdfViewer
Assembly: Syncfusion.SfPdfViewer.UWP.dll
Syntax
public class TextFoundEventArgs : EventArgs
Constructors
TextFoundEventArgs(String, Rect)
Creates a new instance of TextFoundEventArgs class.
Declaration
public TextFoundEventArgs(string targetText, Rect targetTextBounds)
Parameters
Type | Name | Description |
---|---|---|
System.String | targetText | The text that is being searched. |
Windows.Foundation.Rect | targetTextBounds | The bounds of the text instance found. |
Properties
Text
Gets or sets the text being searched.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TextBounds
The bounds of the text instance found.
Declaration
public Rect TextBounds { get; set; }
Property Value
Type | Description |
---|---|
Windows.Foundation.Rect |