IVsIntellisenseHost.UpdateTipWindow(IVsTipWindow, UInt32) 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.
Updates the tip window.
public:
int UpdateTipWindow(Microsoft::VisualStudio::TextManager::Interop::IVsTipWindow ^ pTipWindow, System::UInt32 dwFlags);
public:
int UpdateTipWindow(Microsoft::VisualStudio::TextManager::Interop::IVsTipWindow ^ pTipWindow, unsigned int dwFlags);
int UpdateTipWindow(Microsoft::VisualStudio::TextManager::Interop::IVsTipWindow const & pTipWindow, unsigned int dwFlags);
public int UpdateTipWindow (Microsoft.VisualStudio.TextManager.Interop.IVsTipWindow pTipWindow, uint dwFlags);
abstract member UpdateTipWindow : Microsoft.VisualStudio.TextManager.Interop.IVsTipWindow * uint32 -> int
Public Function UpdateTipWindow (pTipWindow As IVsTipWindow, dwFlags As UInteger) As Integer
Parameters
- pTipWindow
- IVsTipWindow
[in] Pointer to IVsTipWindow interface.
- dwFlags
- UInt32
[in] Tip window options. For a list of dwFlags
values, see TipWindowFlags interface.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
This method will fail if you pass in a class that does not implement either IVsTextTipWindow2 or IVsMethodTipWindow3. Custom Win32 owner-drawn popups are no longer allowed.
C++
From singlefileeditor.idl:
HRESULT IVsIntellisenseHost::UpdateTipWindow([in] IVsTipWindow *pTipWindow, [in] DWORD dwFlags);