struct FULLPROPSPEC {
public Guid guidPropSet;
public PROPSPEC psProperty;
}
VB Definition:
#Region "FULLPROPSPEC Structure Definition"
''' <summary>
''' The FULLPROPSPEC structure specifies a property set and a property within the property set.
''' </summary>
<StructLayout(LayoutKind.Sequential)> _
Public Structure FULLPROPSPEC
' <summary>
' The globally unique identifier (GUID) that identifies the property set.
' </summary>
Public guidPropSet As Guid
' <summary>
' Pointer to the PROPSPEC structure that specifies a property either by its
' property identifier (propid) or by the associated string name (lpwstr).
' </summary>
Public psProperty As PROPSPEC
End Structure
The PROPSPEC structure is used by many of the methods of IPropertyStorage to specify a property either by its property identifier (ID) or the associated string name.
3/16/2007 2:19:01 PM - okastrup-84.168.187.189
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.