'Declaration
<SRCategoryAttribute("CatData")> <System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)> <SRDescriptionAttribute("DataGridView_CellErrorTextNeededDescr")> Public Event CellErrorTextNeeded As System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler AddHandler instance.CellErrorTextNeeded, handler
[SRCategory("CatData")] [System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)] [SRDescription("DataGridView_CellErrorTextNeededDescr")] public event System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler CellErrorTextNeeded
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs containing data related to this event. The following DataGridViewCellErrorTextNeededEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ColumnIndex | (Inherited from System.Windows.Forms.DataGridViewCellEventArgs) |
ErrorText | Gets or sets the message that is displayed when the cell is selected. |
RowIndex | (Inherited from System.Windows.Forms.DataGridViewCellEventArgs) |
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