Class
VirtualGridCellEventArgs

Provides data for cell related events.

Definition

Constructors

VirtualGridCellEventArgs(int, int, VirtualGridViewInfo)

Initializes a new instance of the VirtualGridCellEventArgs class.

Declaration

cs-api-definition
public VirtualGridCellEventArgs(int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo)

Parameters

rowIndex

int

Index of the row.

columnIndex

int

Index of the column.

viewInfo

VirtualGridViewInfo

The view info.

Properties

ColumnIndex

Gets the column index of the cell.

Declaration

cs-api-definition
public int ColumnIndex { get; }

Property Value

int

RowIndex

Gets the row index of the cell.

Declaration

cs-api-definition
public int RowIndex { get; }

Property Value

int