TTMSFNCMemoFindOptions Record
Options that control how a find operation searches editor content, including regex mode, case sensitivity, and result limits.
API unit family: TMSFNCMemo
Syntax
TTMSFNCMemoFindOptions = record
Fields and properties
| Name | Type | Description |
|---|---|---|
CaptureMatches |
Boolean |
When True, the matched text for each capture group is included in the result. |
IsRegex |
Boolean |
When True, the search pattern is interpreted as a regular expression. |
LimitResultCount |
Integer |
Maximum number of matches returned; use 0 for unlimited results. |
MatchCase |
Boolean |
When True, the search is case-sensitive. |
SearchOnlyEditableRange |
Boolean |
When True, the search is restricted to the editable range of the document. |
SetSelect |
Boolean |
When True, each found match is selected in the editor. |
WordSeparators |
String |
Characters treated as word separators when performing whole-word searches. |