PopupEventArgs(IWin32Window, Control, Boolean, Size) Constructor

Definition

Initializes an instance of the PopupEventArgs class.

public:
 PopupEventArgs(System::Windows::Forms::IWin32Window ^ associatedWindow, System::Windows::Forms::Control ^ associatedControl, bool isBalloon, System::Drawing::Size size);
public PopupEventArgs (System.Windows.Forms.IWin32Window associatedWindow, System.Windows.Forms.Control associatedControl, bool isBalloon, System.Drawing.Size size);
public PopupEventArgs (System.Windows.Forms.IWin32Window? associatedWindow, System.Windows.Forms.Control? associatedControl, bool isBalloon, System.Drawing.Size size);
new System.Windows.Forms.PopupEventArgs : System.Windows.Forms.IWin32Window * System.Windows.Forms.Control * bool * System.Drawing.Size -> System.Windows.Forms.PopupEventArgs
Public Sub New (associatedWindow As IWin32Window, associatedControl As Control, isBalloon As Boolean, size As Size)

Parameters

associatedWindow
IWin32Window

The IWin32Window that the ToolTip is bound to.

associatedControl
Control

The Control that the ToolTip is being created for.

isBalloon
Boolean

true to indicate that the associated ToolTip window has a balloon-style appearance; otherwise, false to indicate that the ToolTip window has a standard rectangular appearance.

size
Size

The Size of the ToolTip.

Remarks

The parameters to the PopupEventArgs constructor are used to initialize the corresponding, similarly named properties. The associatedControl parameter can be null if the owning window is not of type Control.

Applies to

See also