IVsTextTipData.GetTipText(String[], Int32) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the tip text.
public:
int GetTipText(cli::array <System::String ^> ^ pbstrText, [Runtime::InteropServices::Out] int % pfGetFontInfo);
int GetTipText(std::Array <std::wstring const &> const & pbstrText, [Runtime::InteropServices::Out] int & pfGetFontInfo);
public int GetTipText (string[] pbstrText, out int pfGetFontInfo);
abstract member GetTipText : string[] * int -> int
Public Function GetTipText (pbstrText As String(), ByRef pfGetFontInfo As Integer) As Integer
- pbstrText
- String[]
[out] The tip text.
- pfGetFontInfo
- Int32
[out] The font information for the tip text.
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsTextTipData::GetTipText(
[out, custom(uuid_IVsTextTipData, "optional")] BSTR *pbstrText,
[out] BOOL *pfGetFontInfo
);