[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Set type used to store values from the TOpenOptionEx enumeration.
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+) |
); |
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.
Added in LCL version 4.0.
|
Widgetset-specific open options which cannot be mapped to the standard values in TOpenOptions. |
|
|
Options which can be used in a TOpenDialog instance. |
|
|
Set type used to store TOpenOption enumeration values. |
|
|
Widgetset-specific options enabled for the dialog. |
|
|
Options to be used for this dialog. |
Version 4.0 | Generated 2025-05-03 | Home |