[]
        
(Showing Draft Content)

C1.Maui.Grid.GridControlRange.-ctor

GridControlRange Constructor

GridControlRange(int, int, int, int)

Initializes a new instance of GridControlRange.

Declaration
public GridControlRange(int row, int column, int rowsCount, int columnsCount)
Public Sub New(row As Integer, column As Integer, rowsCount As Integer, columnsCount As Integer)
Parameters
Type Name Description
int row

The starting row.

int column

The starting column.

int rowsCount

The number of rows.

int columnsCount

The number of columns.

GridControlRange(int, int)

Initializes a new instance of GridControlRange from a single cell specified by row and column.

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

The row.

int column

The column.

GridControlRange(GridControlRange)

Initializes a new instance of GridControlRange from another range.

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