Skip to main content
Version: 4.1

DataGridViewCellCommandEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the CellCommandNeeded event of the DataGridView control.

public class DataGridViewCellCommandEventArgs : EventArgs

Constructors

Instance member DataGridViewCellCommandEventArgs(columnIndex, rowIndex, command)

Initializes a new instance of the DataGridViewCellValueEventArgs class.

NameTypeDescription
columnIndexInt32The index of the column containing the cell that the event occurs for.
rowIndexInt32The index of the row containing the cell that the event occurs for.
commandICommandThe current command or null.

Throws:

Properties

Instance member ColumnIndex

Int32: Returns a value indicating the column index of the cell that the event occurs for.

Instance member Command

ICommand: Returns or sets the command of the cell that the event occurs for.

Instance member RowIndex

Int32: Returns a value indicating the row index of the cell that the event occurs for.

Used By

NameDescription
DataGridViewCellCommandEventHandlerRepresents the method that will handle the CellCommandNeeded event of a DataGridView.