[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'Dialogs' (#lcl)

TFindOptions

Set type used to store TFindOption enumeration values.

Declaration

Source position: dialogs.pp line 415

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" check box is hidden on the Find dialog.

  frHideWholeWord,

  

If set the "Whole word" check box is hidden on 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" check box is disabled on the Find dialog.

  frDisableUpDown,

  

If set the "Up" and "Down" radio buttons are disabled in the Find dialog.

  frDisableWholeWord,

  

If set the "Whole word" check box is disabled on 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" check box is hidden on the Find dialog.

  frButtonsAtBottom

);

Description

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.

See also

TFindOption

  

A list of possible options which can be used in Find dialogs.

TFindDialog.Options

  

Contains the find / replace options enabled for the dialog.


Version 3.2 Generated 2024-02-25 Home