PROPSPEC (Structures)
Last changed: okastrup-84.168.187.189

.
Summary
Enumerates the possible values of the propid member of the PROPSPEC structure. This is not part of Microsofts structured storage definitions, but an addition introduced for convenience.

C# Definition:

public enum PROPSPECIND : uint
{
   LPWSTR = 0,
   PROPID = 1
}

VB Definition:

#Region "PROPSPECKIND Enumeration Definition"
   '/// <summary>
   '/// Indicates whether the PROPSPEC propid or lpwstr member used.
   '/// </summary>
   Public Enum PROPSPECKIND
     '/// <summary>
     '/// Specifies that the the lpwstr member is used.
     '/// </summary>
     LPWSTR = 0

     '/// <summary>
     '/// Specifies that the propid member is used.
     '/// </summary>
     PROPID = 1
   End Enum
#End Region

User-Defined Field Types:

None.

Notes:

None.

Documentation