Class ToolTipOpenedEventArgs
Provides data about the ToolTipOpened event.
Inheritance
System.Object
System.EventArgs
ToolTipOpenedEventArgs
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.ListView.Events
Assembly: Syncfusion.SfListView.WinForms.dll
Syntax
public class ToolTipOpenedEventArgs : EventArgs
Constructors
ToolTipOpenedEventArgs(String, Int32, ToolTipInfo, Point)
Initializes a new instance of the ToolTipOpenedEventArgs class.
Declaration
public ToolTipOpenedEventArgs(string text, int index, ToolTipInfo tooltipinfo, Point location)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The display text of an item. |
System.Int32 | index | An index of list view item. |
ToolTipInfo | tooltipinfo | The ToolTipInfo of the list view item. |
System.Drawing.Point | location | Location of the tool tip value. |
Properties
DisplayText
Gets the display text of an item.
Declaration
public string DisplayText { get; }
Property Value
Type |
---|
System.String |
ItemIndex
Gets an index of an item.
Declaration
public int ItemIndex { get; }
Property Value
Type |
---|
System.Int32 |
Location
Gets or sets the location of the ToolTip.
Declaration
public Point Location { get; set; }
Property Value
Type |
---|
System.Drawing.Point |
ToolTipInfo
Gets or sets the ToolTipInfo of an item.
Declaration
public ToolTipInfo ToolTipInfo { get; set; }
Property Value
Type |
---|
ToolTipInfo |