[]
        
(Showing Draft Content)

C1.WPF.FlexGrid.CellRange.-ctor

CellRange Constructor

CellRange(int, int, int, int)

Initializes a new instance of a CellRange.

Declaration
public CellRange(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

Index of the first row in the range.

int col1

Index of the last row in the range.

int row2

Index of the first column in the range.

int col2

Index of the last column in the range.

CellRange(int, int)

Initializes a new instance of a CellRange containing a single cell.

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

Index of the cell row.

int col

Index of the cell column.

CellRange(UIElement)

Initializes a new instance of a CellRange based on a UIElement that represents a cell.

Declaration
public CellRange(UIElement e)
Public Sub New(e As UIElement)
Parameters
Type Name Description
UIElement e

UIElement that represents a cell.