Click or drag to resize

FOLDERFLAGS Enumeration

A set of flags that specify folder view options. Maps to Windows' FOLDERFLAGS enumeration..

Namespace:  callback.ShellBoost.Core.WindowsShell
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
[FlagsAttribute]
public enum FOLDERFLAGS
Members
  Member nameValueDescription
FWF_NONE0Windows 7 and later. No special view options.
FWF_AUTOARRANGE1 Automatically arrange the elements in the view. This implies LVS_AUTOARRANGE if the list-view control is used to implement the view.
FWF_ABBREVIATEDNAMES2 Not supported.
FWF_SNAPTOGRID4 Not supported.
FWF_OWNERDATA8 Not supported.
FWF_BESTFITWINDOW16 Not supported.
FWF_DESKTOP32 Make the folder behave like the desktop. This value applies only to the desktop and is not used for typical Shell folders. This flag implies FWF_NOCLIENTEDGE and FWF_NOSCROLL.
FWF_SINGLESEL64 Do not allow more than a single item to be selected. This is used in the Common Dialog boxes.
FWF_NOSUBFOLDERS128 Do not show subfolders.
FWF_TRANSPARENT256 Draw transparently. This is used only for the desktop.
FWF_NOCLIENTEDGE512 Not supported.
FWF_NOSCROLL1024 Do not add scroll bars. This is used only for the desktop.
FWF_ALIGNLEFT2048 The view should be left-aligned.
FWF_NOICONS4096 The view should not display icons.
FWF_SHOWSELALWAYS8192 This flag is deprecated as of Windows XP and has no effect. Always show the selection.
FWF_NOVISIBLE16384 Not supported.
FWF_SINGLECLICKACTIVATE32768 Not supported.
FWF_NOWEBVIEW65536 The view should not be shown as a web view.
FWF_HIDEFILENAMES131072 The view should not display file names.
FWF_CHECKSELECT262144 Turns on the check mode for the view.
FWF_NOENUMREFRESH524288Windows Vista and later. Do not re-enumerate the view (or drop the current contents of the view) when the view is refreshed.
FWF_NOGROUPING1048576Windows Vista and later. Do not allow grouping in the view
FWF_FULLROWSELECT2097152Windows Vista and later. When an item is selected, the item and all its sub-items are highlighted.
FWF_NOFILTERS4194304Windows Vista and later. Do not display filters in the view.
FWF_NOCOLUMNHEADER8388608Windows Vista and later. Do not display a column header in the view in any view mode.
FWF_NOHEADERINALLVIEWS16777216Windows Vista and later. Only show the column header in details view mode.
FWF_EXTENDEDTILES33554432Windows Vista and later. When the view is in "tile view mode" the layout of a single item should be extended to the width of the view.
FWF_TRICHECKSELECT67108864Windows Vista and later. Not supported.
FWF_AUTOCHECKSELECT134217728Windows Vista and later. Items can be selected using checkboxes.
FWF_NOBROWSERVIEWSTATE268435456Windows Vista and later. The view should not save view state in the browser.
FWF_SUBSETGROUPS536870912Windows Vista and later. The view should list the number of items displayed in each group.
FWF_USESEARCHFOLDER1073741824Windows Vista and later. Use the search folder for stacking and searching.
FWF_ALLOWRTLREADING-2147483648 Windows Vista and later. Ensure right-to-left reading layout in a right-to-left system. Without this flag, the view displays strings from left-to-right both on systems set to left-to-right and right-to-left reading layout, which ensures that file names display correctly.
See Also