AddDefName
function AddDefName(sName: string = null, sRef: string = null, isHidden: boolean = null): boolean
Description
Adds a new name to a range of cells.
Parameters
- sName
string
null The range name.
- sRef
string
null The reference to the specified range. It must contain the sheet name, followed by sign ! and a range of cells. Example: "Sheet1!$A$1:$B$2".
- isHidden
boolean
null Defines if the range name is hidden or not.
Returns
boolean
Try It
var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A1").SetValue("1");
oWorksheet.GetRange("B1").SetValue("2");
Api.AddDefName("numbers", "Sheet1!$A$1:$B$1");
oWorksheet.GetRange("A3").SetValue("We defined a name 'numbers' for a range of cells A1:B1.");