[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
A list of possible options which can be used in Find dialogs.
Source position: dialogs.pp line 409
type TFindOption = ( |
||
frDown, |
|
If set the "Down" radio button is selected. |
frFindNext, |
|
This option will be set when the user presses "Find Next" |
frHideMatchCase, |
|
If set the "Match case" checkbox is hidden from the Find dialog. |
frHideWholeWord, |
|
If set the "Whole word" checkbox is hidden from the Find dialog. |
frHideUpDown, |
|
If set the "Up" and "Down" radio buttons are hidden from the Find dialog. |
frMatchCase, |
|
This flag is set when the user checks the "Match case" checkbox. |
frDisableMatchCase, |
|
If set the "Match case" checkbox is disabled in the Find dialog. |
frDisableUpDown, |
|
If set the "Up" and "Down" radio buttons are disabled in the Find dialog. |
frDisableWholeWord, |
|
If set the "Whole word" checkbox is disabled in the Find dialog. |
frReplace, |
|
This flag is set if only the first occurrence of the search string is to be replaced with the replace string. |
frReplaceAll, |
|
This flag is set if all occurrences of the search string are to be replaced with the replace string. |
frWholeWord, |
|
This flag is set when the user checks the "Whole word" checkbox. |
frShowHelp, |
|
If set the dialog will display a help button. |
frEntireScope, |
||
frHideEntireScope, |
||
frPromptOnReplace, |
|
This flag is set when the user checks the "Prompt on replace" checkbox. |
frHidePromptOnReplace, |
|
If set the "Prompt on replace" checkbox is hidden from the Find dialog. |
frButtonsAtBottom |
||
); |
TFindOption is an enumerated type with values representing options that can enabled in TFindDialog and descendants. Values from TFindOption are stored in the TFindOptions set type, and used to implement the TFindDialog.Options property.
|
Set type used to store TFindOption enumeration values. |
|
|
Contains the find / replace options enabled for the dialog. |