Click or drag to resize
ExcelRect Constructor
Initializes a new instance of the ExcelRect class with the specified RangeAddress.

Namespace: Aceoffix.Utilities
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public ExcelRect(
	string RangeAddress
)

Parameters

RangeAddress
Type: SystemString

The RangeAddress represents a range of cells containing one contiguous block of cells and it must use A1-style notation.

Note Note

The A1-style notation is defined in Microsoft Excel. For example: A1:F8, it means a range of cells A1 through F8. The A1 cell is the cell whose row index is 1 and column index is 1. The F8 cell is the cell whose row index is 8 and column index is 6.

Note: There is a limit that the maximum number of columns per worksheet is 256 and the maximum number of rows is 65,536 in Excel2003 and earlier versions.

See Also