Skip to content

Latest commit

 

History

History
84 lines (64 loc) · 3.29 KB

ne-propsys-propdesc_columnindex_type.md

File metadata and controls

84 lines (64 loc) · 3.29 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NE:propsys.PROPDESC_COLUMNINDEX_TYPE
PROPDESC_COLUMNINDEX_TYPE (propsys.h)
Indicates whether or how a property can be indexed.
PDCIT_INMEMORY
PDCIT_NONE
PDCIT_ONDEMAND
PDCIT_ONDISK
PDCIT_ONDISKALL
PDCIT_ONDISKVECTOR
PROPDESC_COLUMNINDEX_TYPE
PROPDESC_COLUMNINDEX_TYPE enumeration [Windows Properties]
_shell_PROPDESC_COLUMNINDEX_TYPE
properties.PROPDESC_COLUMNINDEX_TYPE
propsys/PDCIT_INMEMORY
propsys/PDCIT_NONE
propsys/PDCIT_ONDEMAND
propsys/PDCIT_ONDISK
propsys/PDCIT_ONDISKALL
propsys/PDCIT_ONDISKVECTOR
propsys/PROPDESC_COLUMNINDEX_TYPE
shell.PROPDESC_COLUMNINDEX_TYPE
properties\PROPDESC_COLUMNINDEX_TYPE.htm
properties
71ba7578-a902-47ee-883c-0947751d278c
12/05/2018
PDCIT_INMEMORY, PDCIT_NONE, PDCIT_ONDEMAND, PDCIT_ONDISK, PDCIT_ONDISKALL, PDCIT_ONDISKVECTOR, PROPDESC_COLUMNINDEX_TYPE, PROPDESC_COLUMNINDEX_TYPE enumeration [Windows Properties], _shell_PROPDESC_COLUMNINDEX_TYPE, properties.PROPDESC_COLUMNINDEX_TYPE, propsys/PDCIT_INMEMORY, propsys/PDCIT_NONE, propsys/PDCIT_ONDEMAND, propsys/PDCIT_ONDISK, propsys/PDCIT_ONDISKALL, propsys/PDCIT_ONDISKVECTOR, propsys/PROPDESC_COLUMNINDEX_TYPE, shell.PROPDESC_COLUMNINDEX_TYPE
propsys.h
Windows
Windows Vista [desktop apps only]
Windows Server 2008 [desktop apps only]
Propsys.idl
Windows
PROPDESC_COLUMNINDEX_TYPE
19H1
PROPDESC_COLUMNINDEX_TYPE
propsys/PROPDESC_COLUMNINDEX_TYPE
c++
APIRef
kbSyntax
HeaderDef
Propsys.h
PROPDESC_COLUMNINDEX_TYPE

PROPDESC_COLUMNINDEX_TYPE enumeration

-description

Indicates whether or how a property can be indexed.

-enum-fields

-field PDCIT_NONE:0

Never generate any index on this property.

-field PDCIT_ONDISK:1

Always build the individual value index, but build the vector index only on demand.

-field PDCIT_INMEMORY:2

Obsolete.

-field PDCIT_ONDEMAND:3

Windows 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.

-field PDCIT_ONDISKALL:4

Windows 7 and later. Always build both the individual value index and the vector index.

-field PDCIT_ONDISKVECTOR:5

Windows 7 and later. Always build the vector index, but build the value index only on demand.

-remarks

Windows Search builds indexes for the values found in the property store to efficiently support filtering, sorting, and grouping over indexed properties. There are two kinds of indexes: an individual value index that indexes an item by single values, and a vector index that indexes all the vector values of a row as a single index entry.