Click or drag to resize

FOLDERVIEWOPTIONS Enumeration

Used the FolderView.SetOptions method to activate Windows Vista options not supported by default in Windows 7 and later systems as well as deactivating new Windows 7 options. Maps to Windows' FOLDERVIEWOPTIONS enumeration..

Namespace:  callback.ShellBoost.Core.WindowsShell
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
[FlagsAttribute]
public enum FOLDERVIEWOPTIONS
Members
  Member nameValueDescription
FVO_DEFAULT0 Do not use any special options.
FVO_VISTALAYOUT1 Use the Windows Vista list view. This can be used to maintain continuity between systems so that users are presented with an expected view. At this time, setting this flag has the effective, though not literal, result of the application of the FVO_CUSTOMPOSITION and FVO_CUSTOMORDERING flags. However, this could change. Applications should be specific about the behaviors that they require. For instance, if an application requires custom positioning of its items, it should not rely on FVO_VISTALAYOUT to provide it, but instead explicitly apply the FVO_CUSTOMPOSITION flag.
FVO_CUSTOMPOSITION2 Items require custom positioning within the space of the view. Those items are positioned to specific coordinates. This option is not active by default in the Windows 7 view.
FVO_CUSTOMORDERING4 Items require custom ordering within the view. This option is not active by default in the Windows 7 view. When it is active, the user can reorder the view by dragging items to their desired locations.
FVO_SUPPORTHYPERLINKS8 Tiles and Details displays can contain hyperlinks. This option is not active by default in the Windows 7 view. When hyperlinks are displayed, they are updated to the Windows 7 view.
FVO_NOANIMATIONS16 Do not display animations in the view. This option was introduced in Windows 7 and is active by default in the Windows 7 view.
FVO_NOSCROLLTIPS32 Do not show scroll tips. This option was introduced in Windows 7 and is active by default in the Windows 7 view.
See Also