DataGridViewCellStateChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the CellStateChanged event.
- C#
- VB.NET
public class DataGridViewCellStateChangedEventArgs : EventArgs
Public Class DataGridViewCellStateChangedEventArgs
Inherits EventArgs
Constructors
DataGridViewCellStateChangedEventArgs(cell, state)
Initializes a new instance of the DataGridViewCellStateChangedEventArgs class.
| Name | Type | Description |
|---|---|---|
| cell | DataGridViewCell | The DataGridViewCell that has a changed state. |
| state | DataGridViewElementStates | One of the DataGridViewElementStates values indicating the state that has changed on the cell. |
Throws:
- ArgumentNullException cell is null.
Properties
Cell
DataGridViewCell: Returns the DataGridViewCell that has a changed state.
StateChanged
DataGridViewElementStates: Returns the state that has changed on the cell.
Used By
| Name | Description |
|---|---|
| DataGridViewCellStateChangedEventHandler | Represents the method that will handle the CellStateChanged event of a DataGridView. |