Skip to main content
Version: 4.1

DataGridViewRowEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for row-related DataGridView events.

public class DataGridViewRowEventArgs : EventArgs

Constructors

Instance member DataGridViewRowEventArgs(dataGrid, rowIndex)

Initializes a new instance of the DataGridViewRowEventArgs class.

NameTypeDescription
dataGridDataGridViewDataGridView that owns the row.
rowIndexInt32The index of the DataGridViewRow that the event occurred for.

Throws:

Instance member DataGridViewRowEventArgs(row)

Initializes a new instance of the DataGridViewRowEventArgs class.

NameTypeDescription
rowDataGridViewRowThe DataGridViewRow that the event occurred for.

Throws:

Properties

Instance member Row

DataGridViewRow: Returns the DataGridViewRow associated with the event.

Instance member RowIndex

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

Used By

NameDescription
DataGridViewRowEventHandlerRepresents the method that will handle row-related events of a DataGridView.