GetAddress Method (Int32, Int32, Boolean)

Office Open XML

Returns the AlphaNumeric representation that Excel expects for a Cell Address

Namespace:  OfficeOpenXml
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public static string GetAddress(
	int Row,
	int Column,
	bool Absolute
)
Visual Basic (Declaration)
Public Shared Function GetAddress ( _
	Row As Integer, _
	Column As Integer, _
	Absolute As Boolean _
) As String
Visual C++
public:
static String^ GetAddress(
	int Row, 
	int Column, 
	bool Absolute
)

Parameters

Row
Type: System..::.Int32
The number of the row
Column
Type: System..::.Int32
The number of the column in the worksheet
Absolute
Type: System..::.Boolean
Get an absolute address ($A$1)

Return Value

The cell address in the format A1

See Also