Click or drag to resize
NanoXLSX

CellGetCellRange(String, String) Method

Get a list of cell addresses from a cell range

Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntax
C#
public static IEnumerable<Address> GetCellRange(
	string startAddress,
	string endAddress
)

Parameters

startAddress  String
Start address as string in the format A1 - XFD1048576
endAddress  String
End address as string in the format A1 - XFD1048576

Return Value

IEnumerableAddress
List of cell addresses
Exceptions
ExceptionCondition
FormatExceptionThrows a FormatException if a part of the passed range is malformed
RangeExceptionThrows a RangeException if the range is out of range (A-XFD and 1 to 1048576)
See Also