IVsHiddenTextClient::GetTipText Method (IVsHiddenRegion^, array<String^>^)
Visual Studio 2015
Signals that the user has hovered the mouse over a collapsed hidden text region.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- pHidReg
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsHiddenRegion^
[in] Pointer to a hidden region object, IVsHiddenRegion for which tip text is required.
- pbstrText
-
Type:
array<System::String^>^
[out] 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 textmgr.idl:
HRESULT IVsHiddenTextClient::GetTipText(
[in] IVsHiddenRegion *pHidReg,
[out, optional] BSTR *pbstrText
);
Provides tip text for the collapsed outline region in response to this method being called. For example, in Visual C#, this method is used to provide the text of comments when they are collapsed and the user hovers over the banner for the collapsed region (that is, "/**/").
Show: