IVsObjectList2.GetProperty Method (UInt32, Int32, Object)

 

Returns the specified property for the specified list item.

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

int GetProperty(
	uint index,
	int propid,
	out object pvar
)

Parameters

index
Type: System.UInt32

[in] The index of the item for which to get a property.

propid
Type: System.Int32

[in] A value from the _VSOBJLISTELEMPROPID enumeration specifying the property to get.

pvar
Type: System.Object

[out] Returns a VARIANT object containing the requested value.

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell80.idl:

[C++]

HRESULT IVsObjectList2::GetProperty(
   [in] ULONG Index, 
   [in] VSOBJLISTELEMPROPID propid, 
   [out] VARIANT *pvar
);
Return to top
Show: