Class UpdateTooltipEventArgs
Provides data for the UpdateContextToolTip event of the EditControl control.
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.Windows.Forms.Edit
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class UpdateTooltipEventArgs : EventArgs
Constructors
UpdateTooltipEventArgs()
Initializes a new instance of UpdateTooltipEventArgs class.
Declaration
public UpdateTooltipEventArgs()
UpdateTooltipEventArgs(String)
Initializes a new instance of UpdateTooltipEventArgs class.
Declaration
public UpdateTooltipEventArgs(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Text of the tooltip. |
UpdateTooltipEventArgs(String, Rectangle)
Initializes a new instance of UpdateTooltipEventArgs class.
Declaration
public UpdateTooltipEventArgs(string text, Rectangle rect)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Text of the tooltip. |
System.Drawing.Rectangle | rect | Hinted rectangle. |
Fields
HintedArea
Holds the rectangle, that represents an object which has this tooltip.
Declaration
public Rectangle HintedArea
Field Value
Type |
---|
System.Drawing.Rectangle |
Text
Holds the text of the tooltip.
Declaration
public string Text
Field Value
Type |
---|
System.String |
X
Holds the mouse X coordinate value.
Declaration
public int X
Field Value
Type |
---|
System.Int32 |
Y
Holds the mouse Y coordinate value.
Declaration
public int Y
Field Value
Type |
---|
System.Int32 |
Properties
Image
Gets or sets image associated with tooltip.
Declaration
public Image Image { get; set; }
Property Value
Type |
---|
System.Drawing.Image |