Class TextSearchCompletedEventArgs
Provides data for the SearchCompleted event.
Inheritance
System.Object
    TextSearchCompletedEventArgs
  Namespace: Syncfusion.SfPdfViewer.XForms
Assembly: Syncfusion.SfPdfViewer.XForms.dll
Syntax
public class TextSearchCompletedEventArgs : EventArgs
  Properties
NoMatchFound
Gets a value indicating whether there is no match to the text found.
Declaration
public bool NoMatchFound { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | A boolean value which when set to true, represents no match of the searched text is found in the document and vice versa.  | 
      
NoMoreOccurrence
Gets a value indicating whether there are no more occurrences of the text being searched.
Declaration
public bool NoMoreOccurrence { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | A boolean value which when set to true, represents that no more match of the searched text is found in the document and vice versa.  | 
      
TargetText
Gets the text being searched.
Declaration
public string TargetText { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A string that holds the text that is being searched in the PDF document. Default value is System.String.Empty.  |