DataGridViewCellValidatingEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the CellValidating event of a DataGridView control.
- C#
- VB.NET
public delegate void DataGridViewCellValidatingEventHandler(Object sender, DataGridViewCellValidatingEventArgs e)
Public Delegate Sub DataGridViewCellValidatingEventHandler(ByVal sender As [Object], ByVal e As DataGridViewCellValidatingEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | A reference to the event sender. |
| e | DataGridViewCellValidatingEventArgs | A DataGridViewCellValidatingEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| DataGridView.CellValidating | Fired when a cell loses input focus, enabling content validation. |