Class TextSearchOptions
Represent text search options.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Search
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class TextSearchOptions : INotifyPropertyChanged
Constructors
TextSearchOptions()
TextSearchOptions(Boolean)
Initializes a new instance of the TextSearchOptions class.
Declaration
public TextSearchOptions(bool caseSensitive)
Parameters
System.Boolean
caseSensitive
The case sensitive option. |
TextSearchOptions(Boolean, Boolean)
Initializes a new instance of the TextSearchOptions class.
Declaration
public TextSearchOptions(bool caseSensitive, bool useRegularExpression)
Parameters
System.Boolean
caseSensitive
The case sensitive. |
System.Boolean
useRegularExpression
The use regular expression. |
TextSearchOptions(Boolean, Boolean, Boolean)
Initializes a new instance of the TextSearchOptions class.
Declaration
public TextSearchOptions(bool caseSensitive, bool useRegularExpression, bool wholeWordsOnly)
Parameters
System.Boolean
caseSensitive
The case sensitive. |
System.Boolean
useRegularExpression
The use regular expression. |
System.Boolean
wholeWordsOnly
The whole words only. |
Properties
CaseSensitive
Gets or sets a value indicating whether the search should be case sensitive.
Declaration
public bool CaseSensitive { get; set; }
Property Value
System.Boolean
|
Default
Gets the default text search options.
Declaration
public static TextSearchOptions Default { get; }
Property Value
TextSearchOptions
The default. |
UseRegularExpression
Gets or sets a value indicating whether a regular expression should be used for searching.
Declaration
public bool UseRegularExpression { get; set; }
Property Value
System.Boolean
|
WholeWordsOnly
Gets or sets a value indicating whether only whole words should be matched.
Declaration
public bool WholeWordsOnly { get; set; }
Property Value
System.Boolean
|
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|