![]() |
![]() ![]() ![]() |
dcBrowseDialog component.
|
type
|
TdcBrowseDialogOptions = set of (soShowEditBox, soShowFiles, soShowStatusText, soShowPathInStatus, soShowSysAncestors, soShowNetworkFiles, soSelectRootFolders);
|
|
property Options: TdcBrowseDialogOptions;
|
The Options property specifies advanced options for folder-selection dialog. There are following possible options:
|
Value | Meaning
|
soShowEditBox | show edit box and allow to specify location typing the path in the edit box;
|
soShowFiles | show files and allow to select them;
|
soShowStatusText | show the status line (use the status line to show current path (saShowPathInStatus), or specify the status text in the OnSelected event handler);
|
soShowPathInStatus | show the path to selected folder in the status line;
|
soShowSysAncestors | show system shell folders (i.e: "Control Panel", "Printers" etc)
|
soShowNetworkFiles | show files in local area network;
|
soSelectRootFolders | allow to select root folders (i.e: C:\ or D:\).
|
SpecialLocation and StatusText properties;
|
OnSelected event.
|