IVsUIHierarchy::SetProperty Method (UInt32, Int32, Object^)

 

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)

int SetProperty(
	unsigned int itemid,
	int propid,
	Object^ var
)

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.

From vsshell.idl:

HRESULT IVsUIHierarchy::SetProperty(
   [in] VSITEMID itemid,
   [in] VSHPROPID propid,
   [in] VARIANT var
);
Return to top
Show: