[]
Gets the cell name (address) according to its row and column indexes.
public static string CellIndexToName(int row, int column)
Public Shared Function CellIndexToName(row As Integer, column As Integer) As String
| Type | Name | Description |
|---|---|---|
| int | row | The row index. |
| int | column | The column index. |
| Type | Description |
|---|---|
| string | The address of cell. |
string cellName = CellInfo.CellIndexToName(2, 1);