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