STATPROPSTG

Each STATPROPSTG structure contains information about a single property in a property set. This information is the property identifier and type tag, and the optional string name that may be associated with the property.

IPropertyStorage::Enum supplies a pointer to the IEnumSTATPROPSTG interface on an enumerator object that can be used to enumerate through the STATPROPSTG structures for the properties in the current property set. STATPROPSTG is defined as follows:

typedef struct    tagSTATPROPSTG {
    LPWSTR        lpwstrName;
    PROPID        propid;
    VARTYPE       vt;
} STATPROPSTG
 

Members

lpwstrName
Wide-character string containing the optional string name that can be associated with the property. May be NULL. This member must be freed using CoTaskMemFree.
propid
A 32-bit identifier that uniquely identifies the property within the property set. All properties within property sets must have unique property identifiers.
vt
Type of the property.

QuickInfo

  Windows NT: Use version 4.0 or later.
  Windows: Use Windows 95 or later. Available as a redistributable for Windows 95.
  Windows CE: Unsupported.
  Header: Declared in objidl.h.

See Also

IPropertyStorage::Enum, IEnumSTATPROPSTG