GetAddress
function GetAddress(
RowAbs: boolean = null,
ColAbs: boolean = null,
RefStyle: string = null,
External: boolean = null,
RelativeTo: range = null,
): string | "null"
Description
Returns the range address.
Parameters
- RowAbs
boolean
null Defines if the link to the row is absolute or not.
- ColAbs
boolean
null Defines if the link to the column is absolute or not.
- RefStyle
string
null The reference style.
- External
boolean
null Defines if the range is in the current file or not.
- RelativeTo
range
null The range which the current range is relative to.
Returns
string | "null"
Try It
var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A1").SetValue("1");
oWorksheet.GetRange("B1").SetValue("2");
var sAddress = oWorksheet.GetRange("A1").GetAddress(true, true, "xlA1", false);
oWorksheet.GetRange("A3").SetValue("Address: ");
oWorksheet.GetRange("B3").SetValue(sAddress);