'Declaration
<SRCategoryAttribute("CatFocus")> <SRDescriptionAttribute("DataGridView_RowValidatingDescr")> Public Event RowValidating As System.Windows.Forms.DataGridViewCellCancelEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewCellCancelEventHandler AddHandler instance.RowValidating, handler
[SRCategory("CatFocus")] [SRDescription("DataGridView_RowValidatingDescr")] public event System.Windows.Forms.DataGridViewCellCancelEventHandler RowValidating
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewCellCancelEventArgs containing data related to this event. The following DataGridViewCellCancelEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
ColumnIndex | Gets the column index of the cell that the event occurs for. |
RowIndex | Gets the row index of the cell that the event occurs for. |
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