IVsUIHierarchy::GetGuidProperty Method (UInt32, Int32, Guid)

 

Identifies the "type" of a particular node.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int GetGuidProperty(
	unsigned int itemid,
	int propid,
	[OutAttribute] Guid% pguid
)

Parameters

itemid
Type: System::UInt32

[in] Identifier of hierarchy item whose property is to be retrieved. For a list of itemid values, see VSITEMID.

propid
Type: System::Int32

[in] Identifier of the property of the given hierarchy item. For a list of propid values, see __VSHPROPID.

pguid
Type: System::Guid

[out] Pointer to a GUID property specified in propid.

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::GetGuidProperty(
   [in] VSITEMID itemid,
   [in] VSHPROPID propid,
   [out] GUID *pguid
);

Use this method to pass any properties whose values are GUIDs. The GetProperty method cannot be used to pass GUID properties.

Return to top
Show: