Click or drag to resize

SHCOLSTATE Enumeration

Describes how a property or Shell list view column should be treated. Maps to Windows' SHCOLSTATE enumeration..

Namespace:  callback.ShellBoost.Core.WindowsShell
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
[FlagsAttribute]
public enum SHCOLSTATE
Members
  Member nameValueDescription
SHCOLSTATE_DEFAULT0 The value is displayed according to default settings for the column.
SHCOLSTATE_TYPE_STR1 The value is displayed as a string.
SHCOLSTATE_TYPE_INT2 The value is displayed as an integer.
SHCOLSTATE_TYPE_DATE3 The value is displayed as a date/time.
SHCOLSTATE_TYPEMASK15 A mask for display type values SHCOLSTATE_TYPE_STR, SHCOLSTATE_TYPE_INT, and SHCOLSTATE_TYPE_DATE.
SHCOLSTATE_ONBYDEFAULT16 The column should be on by default in Details view.
SHCOLSTATE_SLOW32 Will be slow to compute. Perform on a background thread.
SHCOLSTATE_EXTENDED64 Provided by a handler, not the folder.
SHCOLSTATE_SECONDARYUI128 Not displayed in the context menu, but is listed in the More... dialog.
SHCOLSTATE_HIDDEN256 Not displayed in the UI.
SHCOLSTATE_PREFER_VARCMP512 VarCmp produces same result as IShellFolder::CompareIDs.
SHCOLSTATE_PREFER_FMTCMP1024 PSFormatForDisplay produces same result as IShellFolder::CompareIDs.
SHCOLSTATE_NOSORTBYFOLDERNESS2048 Do not sort folders separately.
SHCOLSTATE_VIEWONLY65536 Only displayed in the UI.
SHCOLSTATE_BATCHREAD131072 Marks columns with values that should be read in a batch.
SHCOLSTATE_NO_GROUPBY262144 Grouping is disabled for this column.
SHCOLSTATE_FIXED_WIDTH4096 Can't resize the column
SHCOLSTATE_NODPISCALE8192 The width is the same in all dpi.
SHCOLSTATE_FIXED_RATIO16384 Fixed width and height ratio.
SHCOLSTATE_DISPLAYMASK61440 Filters out new display flags.
See Also