PdfSearchResult Class
Definition
Search result from text search.
public class PdfSearchResult
Constructors
| Name | Description |
|---|---|
| PdfSearchResult | No summary available. |
PdfSearchResult Constructor
public PdfSearchResult(int pageIndex, int charIndex, int charCount, System.Collections.Generic.IReadOnlyList<Avalonia.Rect> bounds)
Parameters
pageIndex int
charIndex int
charCount int
bounds System.Collections.Generic.IReadOnlyList<Avalonia.Rect>
Properties
| Name | Description |
|---|---|
| Bounds | Bounding rectangles of the matched text in page coordinates. |
| CharCount | Number of characters in the match. |
| CharIndex | Character index in the page text where the match starts. |
| PageIndex | Page index (0-based) where the match was found. |
Bounds Property
Bounding rectangles of the matched text in page coordinates.
public System.Collections.Generic.IReadOnlyList<Avalonia.Rect> Bounds { get; set; }
CharCount Property
Number of characters in the match.
public int CharCount { get; set; }
CharIndex Property
Character index in the page text where the match starts.
public int CharIndex { get; set; }
PageIndex Property
Page index (0-based) where the match was found.
public int PageIndex { get; set; }