SearchOptions Class
Definition
Options for text search.
public class SearchOptions
Constructors
| Name | Description |
|---|---|
| SearchOptions | No summary available. |
SearchOptions Constructor
public SearchOptions()
Properties
| Name | Description |
|---|---|
| MatchCase | Match case when searching. |
| MatchWholeWord | Match whole words only. |
| MaxResults | Maximum number of results to return (0 for unlimited). |
| StartPage | Starting page index for search. |
MatchCase Property
Match case when searching.
public bool MatchCase { get; set; }
MatchWholeWord Property
Match whole words only.
public bool MatchWholeWord { get; set; }
MaxResults Property
Maximum number of results to return (0 for unlimited).
public int MaxResults { get; set; }
StartPage Property
Starting page index for search.
public int StartPage { get; set; }