TABLE:cell_key
TABLE:cell_key(
row,
col,
name
)
Get a fully qualified key from a name that is relative to the TABLE object. This function does not ensure that the fully qualified key is valid.
Equivalent to:
string.format("%s.%d.%d.%s, TABLE:get_name(), row, col, name)
Parameters
| Name | Type | Description |
|---|---|---|
row | #number | The row index of the cell. |
col | #number | The column index of the cell. |
name | #string | A string containing a relative key, to be fully qualified in the context of this TABLE. |
Returns
| Type | Description |
|---|---|
#string | A fully qualified string. |