'Declaration
<SRCategoryAttribute("CatBehavior")> <SRDescriptionAttribute("DataGridView_CellToolTipTextNeededDescr")> <System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)> Public Event CellToolTipTextNeeded As System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler AddHandler instance.CellToolTipTextNeeded, handler
[SRCategory("CatBehavior")] [SRDescription("DataGridView_CellToolTipTextNeededDescr")] [System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)] public event System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler CellToolTipTextNeeded
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs containing data related to this event. The following DataGridViewCellToolTipTextNeededEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ColumnIndex | (Inherited from System.Windows.Forms.DataGridViewCellEventArgs) |
RowIndex | (Inherited from System.Windows.Forms.DataGridViewCellEventArgs) |
ToolTipText | Gets or sets the ToolTip text. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also