TaskProvider.IVsTaskProvider3.GetColumn Method
Gets the definition of the column with the specified index.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
Private Function GetColumn ( _
iColumn As Integer, _
pColumn As VSTASKCOLUMN() _
) As Integer Implements IVsTaskProvider3.GetColumn
int IVsTaskProvider3.GetColumn(
int iColumn,
VSTASKCOLUMN[] pColumn
)
private:
virtual int GetColumn(
int iColumn,
array<VSTASKCOLUMN>^ pColumn
) sealed = IVsTaskProvider3::GetColumn
private abstract GetColumn :
iColumn:int *
pColumn:VSTASKCOLUMN[] -> int
private override GetColumn :
iColumn:int *
pColumn:VSTASKCOLUMN[] -> int
JScript does not support explicit interface implementations.
Parameters
iColumn
Type: System.Int32The index of the column.
pColumn
Type: array<Microsoft.VisualStudio.Shell.Interop.VSTASKCOLUMN[]An array of VSTASKCOLUMN structures.
Return Value
Type: System.Int32
When implemented by derived classes, S_OK or an error code.
Implements
IVsTaskProvider3.GetColumn(Int32, array<VSTASKCOLUMN[])
Remarks
By default this method returns E_FAIL.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.