Interface IQuery
This interface represents a search query
Namespace: PSPDFKitFoundation.Search
Assembly: PSPDFKitFoundation.dll
Syntax
public interface IQuery
Properties
CompareOptions
Search Compare
Declaration
CompareOptions CompareOptions { get; set; }
Property Value
Type | Description |
---|---|
Compare |
GenerateTextPreviews
Set to generate a text preview. Default is true.
Declaration
bool GenerateTextPreviews { get; set; }
Property Value
Type | Description |
---|---|
System. |
MaximumSearchResults
Specifies the maximum search results returned.
Declaration
int MaximumSearchResults { get; set; }
Property Value
Type | Description |
---|---|
System. |
PreviewRange
Sets the range of the preview that should be generated.
Declaration
Range PreviewRange { get; set; }
Property Value
Type | Description |
---|---|
Range |
PriorityPages
Search the pages in this list of Ranges first. Each Range specifies a starting page index and a length.
Declaration
IList<Range> PriorityPages { get; set; }
Property Value
Type | Description |
---|---|
System. |
ReturnEmptyResults
Set to true to return an empty result set for pages with no matches.
Declaration
bool ReturnEmptyResults { get; set; }
Property Value
Type | Description |
---|---|
System. |
SearchAllPages
Set to specify whether all pages should be searched.
Declaration
bool SearchAllPages { get; set; }
Property Value
Type | Description |
---|---|
System. |
SearchAnnotations
Set to search the content of annotations.
Declaration
bool SearchAnnotations { get; set; }
Property Value
Type | Description |
---|---|
System. |
SearchTerm
The search term string.
Declaration
string SearchTerm { get; set; }
Property Value
Type | Description |
---|---|
System. |
SearchType
The desired Search
Declaration
SearchType SearchType { get; set; }
Property Value
Type | Description |
---|---|
Search |