IVsTaskItem2.get_CustomColumnText Method

Returns the text of a customized field for the specified task list view.

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

Syntax

‘선언
Function get_CustomColumnText ( _
    ByRef guidView As Guid, _
    iCustomColumnIndex As UInteger, _
    <OutAttribute> ByRef pbstrText As String _
) As Integer
‘사용 방법
Dim instance As IVsTaskItem2
Dim guidView As Guid
Dim iCustomColumnIndex As UInteger
Dim pbstrText As String
Dim returnValue As Integer

returnValue = instance.get_CustomColumnText(guidView, _
    iCustomColumnIndex, pbstrText)
int get_CustomColumnText(
    ref Guid guidView,
    uint iCustomColumnIndex,
    out string pbstrText
)
int get_CustomColumnText(
    [InAttribute] Guid% guidView, 
    [InAttribute] unsigned int iCustomColumnIndex, 
    [OutAttribute] String^% pbstrText
)
abstract get_CustomColumnText : 
        guidView:Guid byref * 
        iCustomColumnIndex:uint32 * 
        pbstrText:string byref -> int 
function get_CustomColumnText(
    guidView : Guid, 
    iCustomColumnIndex : uint, 
    pbstrText : String
) : int

Parameters

  • guidView
    Type: System.Guid%
    [in] GUID of the task list view.
  • iCustomColumnIndex
    Type: System.UInt32
    [in] Index of the customized field.
  • pbstrText
    Type: System.String%
    [out] Pointer to a string containing the customized field text.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsTaskItem2::get_CustomColumnText(
   [in]REFGUID guidView,
   [in]ULONG iCustomColumnIndex,
   [out, retval]BSTR *pbstrText
);

A task list view consists of a sort and a filter, and is determined solely by its GUID. See the AutoFilter2 for an example of how to implement a custom view.

A task item can have any number of customized fields, each specified by a different value of iCustomColumnIndex. A particular task list view might use any, all, or none of these customized fields. When a particular task list view is requested, the task list asks each task item if it supports the iCustomColumnIndex customized field for this guidView. If the task item does support this field, it should return the customized field text in pbstrText.

The VSTASKFIELD data type of a customized field has the value of FLD_CUSTOM.

.NET Framework Security

See Also

Reference

IVsTaskItem2 Interface

IVsTaskItem2 Members

Microsoft.VisualStudio.Shell.Interop Namespace