[]
        
(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)
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)
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)
Parameters
Type Name Description
UIElement e

UIElement that represents a cell.