Class ToolTipOpeningEventArgs
Provides data about the ToolTipOpening event.
Inheritance
System.Object
ToolTipOpeningEventArgs
Namespace: Syncfusion.WinForms.ListView.Events
Assembly: Syncfusion.SfListView.WinForms.dll
Syntax
public class ToolTipOpeningEventArgs : CancelEventArgs
Constructors
ToolTipOpeningEventArgs(String, Int32, ToolTipInfo, Point, Object)
Initializes a new instance of the ToolTipOpeningEventArgs class.
Declaration
public ToolTipOpeningEventArgs(string text, int index, ToolTipInfo tooltipinfo, Point location, object itemData)
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. |
System.Object | itemData | Item which need to show tool tip. |
Properties
DisplayText
Gets the display text of an item.
Declaration
public string DisplayText { get; }
Property Value
Type |
---|
System.String |
ItemData
Gets the underlying data object of an item.
Declaration
public object ItemData { get; }
Property Value
Type |
---|
System.Object |
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 |