Vcl.StdActns.TBrowseForFolderOptionEx

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBrowseForFolderOptionEx = (bifeHidePinnedPlaces, bifeNoDereferenceLinks, bifeForceShowHidden, bifeAllowMultiselect);

C++

enum DECLSPEC_DENUM TBrowseForFolderOptionEx : unsigned char { bifeHidePinnedPlaces, bifeNoDereferenceLinks, bifeForceShowHidden, bifeAllowMultiselect };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.StdActns.pas
Vcl.StdActns.hpp
Vcl.StdActns Vcl.StdActns

Description

TBrowseForFolderOptionEx contains the options for creating a dialog box used when browsing for folders.

ExecuteTarget uses these options if UseFileDialog is True.

The following table explains the meaning of the options:

Option Description

bifeHidePinnedPlaces

Hides items shown by default in the navigation pane of the view.

  • Windows 7 and later: Hides all of the standard namespace locations, such as Favorites, Libraries, Computer, and Network.
  • Windows Vista: Hides the contents of the Favorite Links tree in the navigation pane.
    Note: The category itself still displays as empty.

bifeNoDereferenceLinks

Shortcuts are not treated as their target items. This allows an application to open a .lnk file rather than what that file is a shortcut to.

bifeForceShowHidden

Include hidden and system items.

bifeAllowMultiselect

Enables the user to select multiple items in the open dialog.

See Also