IVsMethodTipWindow.SetMethodData(IVsMethodData) Method
Definition
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.
Sets method data to display in the method tip window and releases previous method data.
public:
int SetMethodData(Microsoft::VisualStudio::TextManager::Interop::IVsMethodData ^ pMethodData);
public:
int SetMethodData(Microsoft::VisualStudio::TextManager::Interop::IVsMethodData ^ pMethodData);
int SetMethodData(Microsoft::VisualStudio::TextManager::Interop::IVsMethodData const & pMethodData);
public int SetMethodData (Microsoft.VisualStudio.TextManager.Interop.IVsMethodData pMethodData);
abstract member SetMethodData : Microsoft.VisualStudio.TextManager.Interop.IVsMethodData -> int
Public Function SetMethodData (pMethodData As IVsMethodData) As Integer
Parameters
- pMethodData
- IVsMethodData
[in] Pointer to the IVsMethodData interface, which is used to set method and parameter information for the method tip window.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsMethodTipWindow::SetMethodData(
[in] IVsMethodData *pMethodData
);
Call SetMethodData to provide a method tip window for a keyword that the user has typed into the core editor.