|
Unit RVStyle
type
TRVSearchOption = (rvsroMatchCase, rvsroDown, rvsroWholeWord, rvsroFromStart);
TRVSearchOptions = set of TRVSearchOption;
Options for searching in RichView, see TCustomRichView.SearchText, SearchTextW.
Value
|
Meaning
|
rvsroMatchCase
|
If included, character case is taken into account when comparing string.
|
rvsroDown
|
If included, search is performed to the end of document. If not included, it is performed to the top of document.
|
rvsroWholeWord
|
If included, the searched string matches only whole words.
|
rvsroFromStart
|
If included, search starts from the beginning/end of document. If not included, it starts from the selection or the first/last visible item.
|
|