Class ToolTipShownEventArgs
Provides data sbout the
Inheritance
System.Object
System.EventArgs
ToolTipShownEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.Controls.Events
Assembly: Syncfusion.Shared.Base.dll
Syntax
public sealed class ToolTipShownEventArgs : EventArgs
Remarks
The ToolTipInfo of the tooltip can be from ToolTipInfo property.
The location that the tooltip was shown can be get from Location property.
Constructors
ToolTipShownEventArgs(Control, ToolTipInfo, Point)
Initializes a new instance of the ToolTipShownEventArgs class.
Declaration
public ToolTipShownEventArgs(Control control, ToolTipInfo toolTipInfo, Point location)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.Control | control | The control which shown the tooltip. |
ToolTipInfo | toolTipInfo | The ToolTipInfo of the tooltip shown. |
System.Drawing.Point | location | The location that the tooltip was shown. |
Properties
Control
Gets a control which shown tooltip.
Declaration
public Control Control { get; }
Property Value
Type |
---|
System.Windows.Forms.Control |
Location
Gets the location that the tooltip was shown.
Declaration
public Point Location { get; }
Property Value
Type |
---|
System.Drawing.Point |
ToolTipInfo
Gets the ToolTipInfo of the shown tooltip.
Declaration
public ToolTipInfo ToolTipInfo { get; }
Property Value
Type |
---|
ToolTipInfo |