Click or drag to resize
NanoXLSX

CellResolveCellAddress Method

Gets the address of a cell by the column and row number (zero based)

Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntax
C#
public static string ResolveCellAddress(
	int column,
	int row,
	CellAddressType type = 0
)

Parameters

column  Int32
Column number of the cell (zero-based)
row  Int32
Row number of the cell (zero-based)
type  CellAddressType  (Optional)
Optional referencing type of the address

Return Value

String
Cell Address as string in the format A1 - XFD1048576. Depending on the type, Addresses like '$A55', 'B$2' or '$A$5' are possible outputs
Exceptions
ExceptionCondition
RangeExceptionThrows a RangeException if the start or end address was out of range
See Also