IVsTaskItem3::GetTipText Method (Int32, String^)
Visual Studio 2015
Returns the tip text for the given field. If this method fails or returns an empty string, the task list will use the text of the item itself (if any) or the accessibility name as the tip text.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Parameters
- iField
-
Type:
System::Int32
[in] An integer value representing the field column to use for the Tip Text.
- pbstrTipText
-
Type:
System::String^
[out] A pointer to a string containing the Tip Text.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsTaskItem3::GetTipText( [in] int iField, [out] BSTR* pbstrTipText );
Show: