IVsTextView.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 a tip window object.
- dwFlags
- UInt32
[in] Tip window options. For a list of dwFlags
values, see TipWindowFlags.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextView::UpdateTipWindow(
[in] IVsTipWindow *pTipWindow,
[in] DWORD dwFlags
);