Sets properties whose values are GUIDs.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function SetGuidProperty ( _
    itemid As UInteger, _
    propid As Integer, _
    ByRef rguid As Guid _
) As Integer
int SetGuidProperty(
    uint itemid,
    int propid,
    ref Guid rguid
)
int SetGuidProperty(
    [InAttribute] unsigned int itemid, 
    [InAttribute] int propid, 
    [InAttribute] Guid% rguid
)
abstract SetGuidProperty : 
        itemid:uint32 * 
        propid:int * 
        rguid:Guid byref -> int
function SetGuidProperty(
    itemid : uint, 
    propid : int, 
    rguid : Guid
) : int
Parameters
- itemid 
 Type: UInt32- [in] Identifier of the hierarchy item that is to be set. For a list of itemid values, see VSITEMID. 
- propid 
 Type: Int32- [in] Identifier of the property in the given hierarchy item. For a list of propid values, see __VSHPROPID. 
- rguid 
 Type: Guid%- [in] GUID value of the property specified in propid that is returned by GetGuidProperty. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
This method is called by the environment to set a specific property on the hierarchy.
COM Signature
From vsshell.idl:
HRESULT IVsHierarchy::SetGuidProperty(
   [in] VSITEMID itemid,
   [in] VSHPROPID propid,
   [in] REFGUID rguid
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.