Skip to main content
Version: 3.5

DataGridViewRowEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for row-related DataGridView events.

public class DataGridViewRowEventArgs : EventArgs

Constructors

Instance memberDataGridViewRowEventArgs(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 memberDataGridViewRowEventArgs(row)

Initializes a new instance of the DataGridViewRowEventArgs class.

NameTypeDescription
rowDataGridViewRowThe DataGridViewRow that the event occurred for.

Throws:

Properties

Instance memberRow

DataGridViewRow: Returns the DataGridViewRow associated with the event.

Instance memberRowIndex

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.