ToolTip.Hide(IWin32Window) 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.
Hides the specified ToolTip window.
public:
void Hide(System::Windows::Forms::IWin32Window ^ win);
public void Hide (System.Windows.Forms.IWin32Window win);
member this.Hide : System.Windows.Forms.IWin32Window -> unit
Public Sub Hide (win As IWin32Window)
Parameters
- win
- IWin32Window
The IWin32Window of the associated window or control that the ToolTip is associated with.
Exceptions
win
is null
.
Remarks
The Hide method hides the ToolTip for the specified Control if it is currently being displayed. It does not disable or otherwise prevent the same ToolTip from being displayed in the future. To instead disable all ToolTip windows associated with the current ToolTipTitle component, set the Active property to false
.
Applications running in partial trust must assert the AllWindows permission to use this method, as Hide can hide the tip independent of user action.