IVsTaskProvider3::GetColumn Method (Int32, array<VSTASKCOLUMN>^)

 

Gets the definition of an indexed column (0 <= iColumn < nColumns)

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

int GetColumn(
	int iColumn,
	array<VSTASKCOLUMN>^ pColumn
)

Parameters

iColumn
Type: System::Int32

[in] A value of type integer containing the Column Index.

pColumn
Type: array<Microsoft.VisualStudio.Shell.Interop::VSTASKCOLUMN>^

[out] A pointer to an array of objects of type VSTASKCOLUMN.

Return Value

Type: System::Int32

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

From vsshell80.idl:

HRESULT IVsTaskProvider3::GetColumn(
   [in] int iColumn, 
   [out] VSTASKCOLUMN* pColumn
);
Return to top
Show: