IVsHierarchy.SetProperty Method
Sets properties of a specific node or of the hierarchy.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Déclaration
Function SetProperty ( _
itemid As UInteger, _
propid As Integer, _
var As Object _
) As Integer
'Utilisation
Dim instance As IVsHierarchy
Dim itemid As UInteger
Dim propid As Integer
Dim var As Object
Dim returnValue As Integer
returnValue = instance.SetProperty(itemid, _
propid, var)
int SetProperty(
uint itemid,
int propid,
Object var
)
int SetProperty(
[InAttribute] unsigned int itemid,
[InAttribute] int propid,
[InAttribute] Object^ var
)
function SetProperty(
itemid : uint,
propid : int,
var : Object
) : int
Parameters
itemid
Type: System.UInt32[in] Item identifier of the hierarchy item whose properties are to be set. For a list of itemid values, see VSITEMID.
propid
Type: System.Int32[in] Identifier of the hierarchy property. For a list of propid values, see __VSHPROPID.
var
Type: System.Object[in] Variant that contains property information.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsHierarchy::SetProperty(
[in] VSITEMID itemid,
[in] VSHPROPID propid,
[in] VARIANT var
);
Permissions
- 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.