IVsTaskItem.get_Text Method

Returns the description of the task item.

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

Syntax

'Declaration
Function get_Text ( _
    <OutAttribute> ByRef pbstrName As String _
) As Integer
int get_Text(
    out string pbstrName
)
int get_Text(
    [OutAttribute] String^% pbstrName
)
abstract get_Text : 
        pbstrName:string byref -> int 
function get_Text(
    pbstrName : String
) : int

Parameters

  • pbstrName
    Type: System.String%
    [out, retval] Pointer to a description of the task item.

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 IVsTaskItem::get_Text(
   [out,retval] BSTR *pbstrName
);

This method returns the text in the description column for a specific task item.

.NET Framework Security

See Also

Reference

IVsTaskItem Interface

Microsoft.VisualStudio.Shell.Interop Namespace