[]
        
(Showing Draft Content)

C1.WinUI.Grid.GridCellRange.-ctor

GridCellRange Constructor

GridCellRange(int, int)

Initializes a new instance of the GridCellRange class.

Declaration
public GridCellRange(int row, int col)
Public Sub New(row As Integer, col As Integer)
Parameters
Type Name Description
int row

The row.

int col

The column.

GridCellRange(int, int, int, int)

Initializes a new instance of the GridCellRange class.

Declaration
public GridCellRange(int row1, int col1, int row2, int col2)
Public Sub New(row1 As Integer, col1 As Integer, row2 As Integer, col2 As Integer)
Parameters
Type Name Description
int row1

The upper row.

int col1

The left most column.

int row2

The bottom row.

int col2

The right most column.

GridCellRange(GridCellRange)

Initializes a new instance of the GridCellRange class.

Declaration
public GridCellRange(GridCellRange range)
Public Sub New(range As GridCellRange)
Parameters
Type Name Description
GridCellRange range

The range.