PdfSearchCompletedEventArgs Class
Definition
Provides data for the Avalonia.Controls.PdfViewer.SearchCompleted event.
public class PdfSearchCompletedEventArgs
Constructors
| Name | Description |
|---|---|
| PdfSearchCompletedEventArgs | Initializes a new instance of the Avalonia.Controls.PdfSearchCompletedEventArgs class. |
PdfSearchCompletedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.PdfSearchCompletedEventArgs class.
public PdfSearchCompletedEventArgs(string query, int matchCount)
Parameters
query string
matchCount int
Properties
| Name | Description |
|---|---|
| MatchCount | Gets the number of matches found. |
| Query | Gets the query that was searched. |
MatchCount Property
Gets the number of matches found.
public int MatchCount { get; set; }
Query Property
Gets the query that was searched.
public string Query { get; set; }