[]
        
(Showing Draft Content)

C1.Excel.XLRange.-ctor

XLRange Constructor

XLRange(string, XLReferenceMode)

Initialization range.

Declaration
public XLRange(string areaRef, XLReferenceMode mode = XLReferenceMode.A1)
Parameters
Type Name Description
string areaRef

The area reference text (for exapmle: 'A4:D8').

XLReferenceMode mode

The area reference text (for exapmle: 'A4:D8').

XLRange(int, int)

Initialization range.

Declaration
public XLRange(int row, int col)
Parameters
Type Name Description
int row

The index of the row in the cell.

int col

The index of the column in the cell.

XLRange(int, int, int, int)

Initialization range.

Declaration
public XLRange(int rowFirst, int colFirst, int rowLast, int colLast)
Parameters
Type Name Description
int rowFirst

The index of the top row in the range.

int colFirst

The index of the left column in the range.

int rowLast

The index of the bottom row in the range.

int colLast

The index of the right column in the range.