FindOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the options to use when doing a text search.
This enumeration supports a bitwise combination of its member values.
public enum class FindOptions
/// [System.Flags]
/// [Windows.Foundation.Metadata.Version(1)]
enum class FindOptions
[System.Flags]
[Windows.Foundation.Metadata.Version(1)]
public enum FindOptions
var value = Microsoft.UI.Text.FindOptions.none
Public Enum FindOptions
- Inheritance
-
FindOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Use the default text search options; namely, use case- independent, arbitrary character boundaries. |
Word | 2 | Match whole words. |
Case | 4 | Match case; that is, a case-sensitive search. |