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 Text
Declaration
public TextSearchOptions(bool caseSensitive)
Parameters
System. The case sensitive option. |
TextSearchOptions(Boolean, Boolean)
Initializes a new instance of the Text
Declaration
public TextSearchOptions(bool caseSensitive, bool useRegularExpression)
Parameters
System. The case sensitive. |
System. The use regular expression. |
TextSearchOptions(Boolean, Boolean, Boolean)
Initializes a new instance of the Text
Declaration
public TextSearchOptions(bool caseSensitive, bool useRegularExpression, bool wholeWordsOnly)
Parameters
System. The case sensitive. |
System. The use regular expression. |
System. 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.
|
Default
Gets the default text search options.
Declaration
public static TextSearchOptions Default { get; }
Property Value
Text 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.
|
WholeWordsOnly
Gets or sets a value indicating whether only whole words should be matched.
Declaration
public bool WholeWordsOnly { get; set; }
Property Value
System.
|
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.
|