在試算表中建立、存取及修改命名範圍。已命名範圍是指具有關聯字串別名的範圍。你可以透過「工作表」UI 中的「資料」>「命名範圍...」選單查看及編輯這些範圍。
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
get | String | 取得這個命名範圍的名稱。 |
get | Range | 取得這個已命名範圍所參照的範圍。 |
remove() | void | 刪除這個已命名範圍。 |
set | Named | 設定/更新已命名範圍的名稱。 |
set | Named | 設定/更新這個已命名範圍的範圍。 |
內容詳盡的說明文件
get Name()
取得這個命名範圍的名稱。
回攻員
String
:這個已命名範圍的名稱
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
get Range()
remove()
刪除這個已命名範圍。
// The code below deletes all the named ranges in the spreadsheet. const namedRanges = SpreadsheetApp.getActive().getNamedRanges(); for (let i = 0; i < namedRanges.length; i++) { namedRanges[i].remove(); }
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
set Name(name)
設定/更新已命名範圍的名稱。
// The code below updates the name for the first named range. const namedRanges = SpreadsheetApp.getActiveSpreadsheet().getNamedRanges(); if (namedRanges.length > 1) { namedRanges[0].setName('UpdatedNamedRange'); }
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 命名範圍的新名稱。 |
回攻員
Named
:呼叫設定的範圍名稱
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
set Range(range)
設定/更新這個已命名範圍的範圍。
參數
名稱 | 類型 | 說明 |
---|---|---|
range | Range | 要與這個命名範圍建立關聯的試算表範圍。 |
回攻員
Named
:試算表範圍的命名範圍
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets