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

TOpenOptionsEx

Set type used to store values from the TOpenOptionEx enumeration.

Declaration

Source position: dialogs.pp line 229

type TOpenOptionsEx = set of (

  ofHidePinnedPlaces,

  

Hides items shown by default in the view's navigation pane. (Windows Vista+)

  ofStrictFileTypes,

  

In a Save dialog, restrict the file extension to a file type available in the Filter property for the dialog. (Windows Vista+)

  ofPickFolders,

  

Turns the dialog into a TSelectDirectoryDialog. (Windows Vista+)

  ofOkButtonNeedsInteraction,

  

The OK button will be disabled until the user navigates the view or edits the filename (if applicable). (Windows Vista+)

  ofForceFileSystem,

  

Ensures that returned items are file system items. (Windows Vista+)

  ofAllNonStorageItems

  

Allows the user to choose any item in the Shell namespace, not just those with SFGAO_STREAM or SFGAO_FILESYSTEM attributes. This flag cannot be combined with FOS_FORCEFILESYSTEM. (Windows Vista+)

);

Description

TOpenOptionsEx is a set type used to store zero (0) or more values from the TOpenOptionEx enumeration. It is the type used to implement the OptionsEx property in TOpenDialog, and contains the widgetset-specific options enabled for a dialog.

In the current implementation, TOpenOptionsEx contains values specific to Windows Vista or later versions. It contains values which cannot be mapped directly to values in the TOpenOption enumeration.

Version info

Added in LCL version 4.0.

See also

TOpenOptionEx

  

Widgetset-specific open options which cannot be mapped to the standard values in TOpenOptions.

TOpenOption

  

Options which can be used in a TOpenDialog instance.

TOpenOptions

  

Set type used to store TOpenOption enumeration values.

TOpenDialog.OptionsEx

  

Widgetset-specific options enabled for the dialog.

TOpenDialog.Options

  

Options to be used for this dialog.


Version 4.0 Generated 2025-05-03 Home