'Declaration
<SRCategoryAttribute("CatData")> <System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)> <SRDescriptionAttribute("DataGridView_RowErrorTextNeededDescr")> Public Event RowErrorTextNeeded As System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler AddHandler instance.RowErrorTextNeeded, handler
[SRCategory("CatData")] [System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)] [SRDescription("DataGridView_RowErrorTextNeededDescr")] public event System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler RowErrorTextNeeded
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs containing data related to this event. The following DataGridViewRowErrorTextNeededEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ErrorText | Gets or sets the error text for the row. |
RowIndex | Gets the row that raised the System.Windows.Forms.DataGridView.RowErrorTextNeeded event. |
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