wpf-devexpress-dot-xpf-dot-richedit-dot-richeditcontrol-acc5e8c5.md
Provides access to an object used to specify parameters affecting a search in a document. This is a dependency property.
Namespace : DevExpress.Xpf.RichEdit
Assembly : DevExpress.Xpf.RichEdit.v25.2.dll
NuGet Package : DevExpress.Wpf.RichEdit
public DXRichEditDocumentSearchOptions SearchOptions { get; set; }
Public Property SearchOptions As DXRichEditDocumentSearchOptions
| Type | Description |
|---|---|
| DXRichEditDocumentSearchOptions |
A DXRichEditDocumentSearchOptions object containing the search options.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SearchOptions property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
<dxre:RichEditControl x:Name="richEditControl1" ActiveViewType="Draft">
<dxre:RichEditControl.SearchOptions>
<dxre:DXRichEditDocumentSearchOptions RegExResultMaxGuaranteedLength="500"/>
See Also