[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Set type used to store TFindOption enumeration values.
Source position: dialogs.pp line 414
type TFindOptions = set of ( |
||
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 |
||
); |
TFindOptions is a set type used to store zero (0) or more values from the TFindOption enumeration type. Adding an enumeration value to the set indicates that the option is enabled.
TFindOptions is the type used to implement the TFindDialog.Options property.
|
A list of possible options which can be used in Find dialogs. |
|
|
Contains the find / replace options enabled for the dialog. |