CompletionSet.GetDescriptionText Method

Gets a description for the specified item in the completion list.

Namespace:  Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)

Syntax

'宣言
Public Function GetDescriptionText ( _
    index As Integer, _
    <OutAttribute> ByRef description As String _
) As Integer
'使用
Dim instance As CompletionSet
Dim index As Integer
Dim description As String
Dim returnValue As Integer

returnValue = instance.GetDescriptionText(index, _
    description)
public int GetDescriptionText(
    int index,
    out string description
)
public:
virtual int GetDescriptionText(
    int index, 
    [OutAttribute] String^% description
) sealed
public final function GetDescriptionText(
    index : int, 
    description : String
) : int

Parameters

  • index
    Type: System.Int32

    [in] The index of the item for which to get a description.

  • description
    Type: System.String%

    [out] Returns the description, or a null reference (Nothing in Visual Basic) if there is no description.

Return Value

Type: System.Int32

If successful, returns S_OK; otherwise, returns an error.

Implements

IVsCompletionSet.GetDescriptionText(Int32, String%)

Remarks

The description text is typically displayed in a tool tip next to the item currently selected in the completion list.

This method is an implementation of the GetDescriptionText method on the IVsCompletionSet interface.

The base method forwards the call to the GetDescription method on the Declarations object that was passed to the Init method. The base method always returns a success code of S_OK.

Permissions

See Also

Reference

CompletionSet Class

CompletionSet Members

Microsoft.VisualStudio.Package Namespace