IVsHierarchy.SetGuidProperty Method

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: System.UInt32
    [in] Identifier of the hierarchy item that is to be set. For a list of itemid values, see VSITEMID.
  • propid
    Type: System.Int32
    [in] Identifier of the property in the given hierarchy item. For a list of propid values, see __VSHPROPID.

Return Value

Type: System.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

See Also

Reference

IVsHierarchy Interface

Microsoft.VisualStudio.Shell.Interop Namespace