Source.GetTipText Method

Gets the text in the given hidden region to be used in a tool tip.

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

Syntax

'宣言
Public Overridable Function GetTipText ( _
    region As IVsHiddenRegion, _
    result As String() _
) As Integer
'使用
Dim instance As Source
Dim region As IVsHiddenRegion
Dim result As String()
Dim returnValue As Integer

returnValue = instance.GetTipText(region, _
    result)
public virtual int GetTipText(
    IVsHiddenRegion region,
    string[] result
)
public:
virtual int GetTipText(
    IVsHiddenRegion^ region, 
    array<String^>^ result
)
public function GetTipText(
    region : IVsHiddenRegion, 
    result : String[]
) : int

Parameters

  • result
    Type: []

    [out] Returns the text from the hidden region.

Return Value

Type: System.Int32

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

Implements

IVsHiddenTextClient.GetTipText(IVsHiddenRegion, [])

Remarks

This method is called whenever a user holds the mouse cursor over a hidden text region that is collapsed. The resulting tool tip shows the text that is hidden.

This method is an implementation of the method GetTipText on the IVsHiddenTextClient interface.

The base method gets the span from the given hidden region and returns the text from the source encompassed by the span.

See Outlining (Managed Package Framework) for more information about hidden regions.

Permissions

See Also

Concepts

Outlining (Managed Package Framework)

Reference

Source Class

Source Members

Microsoft.VisualStudio.Package Namespace