Click or drag to resize

PROPDESC_COLUMNINDEX_TYPE Enumeration

Indicates whether or how a property can be indexed. Wraps Windows' PROPDESC_COLUMNINDEX_TYPE enumeration..

Namespace:  callback.ShellBoost.Core.WindowsPropertySystem
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public enum PROPDESC_COLUMNINDEX_TYPE
Members
  Member nameValueDescription
PDCIT_NONE0 Never generate any index on this property.
PDCIT_ONDISK1 Always build the individual value index, but build the vector index only on demand.
PDCIT_INMEMORY2 Obsolete
PDCIT_ONDEMAND3Windows 7 and later. Build the individual value index or vector index the first time the index is used in a query to filter, group, or sort. After being generated the first time, the index is maintained for future queries. Most property indexes should be built on demand, because building and maintaining indexes is expensive and they should be built only if they will be used.
PDCIT_ONDISKALL4Windows 7 and later. Always build both the individual value index and the vector index.
PDCIT_ONDISKVECTOR5Windows 7 and later. Always build the vector index, but build the value index only on demand.
See Also