IVsTaskItem2.get_CustomColumnText 方法

返回一个自定义的字段中指定的任务列表视图。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function get_CustomColumnText ( _
    ByRef guidView As Guid, _
    iCustomColumnIndex As UInteger, _
    <OutAttribute> ByRef pbstrText As String _
) As Integer
int get_CustomColumnText(
    ref Guid guidView,
    uint iCustomColumnIndex,
    out string pbstrText
)

参数

  • guidView
    类型:System.Guid%
    [in] 的 GUID 任务列表视图。
  • iCustomColumnIndex
    类型:System.UInt32
    [in] 自定义的字段的索引。
  • pbstrText
    类型:System.String%
    [out] 对包含自定义字段的文本字符串的指针。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

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

任务列表视图包括排序和筛选和其 GUID 仅取决于。 为的示例演示如何参见 AutoFilter2 实现自定义视图。

任务项可以有任意数量的自定义字段,每个类型都指定由 iCustomColumnIndex的值不同。 特定不任务列表视图可以使用中的任何一个,这些自定义字段或全部。 在特定任务列表时视图请求,任务列表对每个任务项,则支持此 guidView的 iCustomColumnIndex 自定义字段。 如果任务项支持此字段,则应返回在 pbstrText的自定义字段文本。

自定义字段的 VSTASKFIELD 数据类型具有 FLD_CUSTOM的值。

.NET Framework 安全性

请参见

参考

IVsTaskItem2 接口

Microsoft.VisualStudio.Shell.Interop 命名空间