IVsUIHierarchy::GetProperty Method (UInt32, Int32, Object^)
Visual Studio 2015
Gets properties of a given node or of the hierarchy.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- itemid
-
Type:
System::UInt32
[in] Item identifier of an item in the hierarchy. 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.
- pvar
-
Type:
System::Object^
[out] Pointer to a VARIANT containing the property value.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsUIHierarchy::GetProperty( [in] VSITEMID itemid, [in] VSHPROPID propid, [out] VARIANT *pvar );
To get properties of the project (hierarchy), specify an itemid value of VSITEMID_ROOT.
Show: