Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum FOLDERFLAGS
Members
| Member name | Value | Description |
---|
| FWF_NONE | 0 | Windows 7 and later. No special view options.
|
| FWF_AUTOARRANGE | 1 |
Automatically arrange the elements in the view. This implies LVS_AUTOARRANGE if the list-view control is used to implement the view.
|
| FWF_ABBREVIATEDNAMES | 2 |
Not supported.
|
| FWF_SNAPTOGRID | 4 |
Not supported.
|
| FWF_OWNERDATA | 8 |
Not supported.
|
| FWF_BESTFITWINDOW | 16 |
Not supported.
|
| FWF_DESKTOP | 32 |
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_SINGLESEL | 64 |
Do not allow more than a single item to be selected. This is used in the Common Dialog boxes.
|
| FWF_NOSUBFOLDERS | 128 |
Do not show subfolders.
|
| FWF_TRANSPARENT | 256 |
Draw transparently. This is used only for the desktop.
|
| FWF_NOCLIENTEDGE | 512 |
Not supported.
|
| FWF_NOSCROLL | 1024 |
Do not add scroll bars. This is used only for the desktop.
|
| FWF_ALIGNLEFT | 2048 |
The view should be left-aligned.
|
| FWF_NOICONS | 4096 |
The view should not display icons.
|
| FWF_SHOWSELALWAYS | 8192 |
This flag is deprecated as of Windows XP and has no effect. Always show the selection.
|
| FWF_NOVISIBLE | 16384 |
Not supported.
|
| FWF_SINGLECLICKACTIVATE | 32768 |
Not supported.
|
| FWF_NOWEBVIEW | 65536 |
The view should not be shown as a web view.
|
| FWF_HIDEFILENAMES | 131072 |
The view should not display file names.
|
| FWF_CHECKSELECT | 262144 |
Turns on the check mode for the view.
|
| FWF_NOENUMREFRESH | 524288 | Windows Vista and later. Do not re-enumerate the view (or drop the current contents of the view) when the view is refreshed.
|
| FWF_NOGROUPING | 1048576 | Windows Vista and later. Do not allow grouping in the view
|
| FWF_FULLROWSELECT | 2097152 | Windows Vista and later. When an item is selected, the item and all its sub-items are highlighted.
|
| FWF_NOFILTERS | 4194304 | Windows Vista and later. Do not display filters in the view.
|
| FWF_NOCOLUMNHEADER | 8388608 | Windows Vista and later. Do not display a column header in the view in any view mode.
|
| FWF_NOHEADERINALLVIEWS | 16777216 | Windows Vista and later. Only show the column header in details view mode.
|
| FWF_EXTENDEDTILES | 33554432 | Windows 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_TRICHECKSELECT | 67108864 | Windows Vista and later. Not supported.
|
| FWF_AUTOCHECKSELECT | 134217728 | Windows Vista and later. Items can be selected using checkboxes.
|
| FWF_NOBROWSERVIEWSTATE | 268435456 | Windows Vista and later. The view should not save view state in the browser.
|
| FWF_SUBSETGROUPS | 536870912 | Windows Vista and later. The view should list the number of items displayed in each group.
|
| FWF_USESEARCHFOLDER | 1073741824 | Windows 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