已淘汰的方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
|
| 將指定聯絡人新增至這個群組 |
| void | 刪除這個聯絡人群組。 |
|
| 取得這個聯絡人群組的所有聯絡人。 |
| String | 傳回這個群組的名稱。 |
| String | 取得這個聯絡人群組的 ID。 |
| String | 取得這個聯絡人群組的名稱。 |
| Boolean | 取得布林值,判斷這個聯絡人群組是系統群組 (可刪除) 或 而不是 |
|
| 將指定聯絡人從這個群組中移除 |
| void | 設定這個群組的名稱。 |
|
| 設定這個聯絡人群組的名稱。 |
已淘汰的方法
addContact(contact)
addContact(contact)
已淘汰。這個函式已淘汰,不應用於新的指令碼。
將指定聯絡人新增至這個群組
// The code below creates a new contact and adds it to the "Work Friends" contact group var contact = ContactsApp.createContact('John', 'Doe', 'john.doe@example.com'); var group = ContactsApp.getContactGroup('Work Friends'); group.addContact(contact);
參數
名稱 | 類型 | 說明 |
---|---|---|
contact |
| 要加入群組的聯絡人 |
回攻員
:這個聯絡人群組ContactGroup
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
另請參閱
deleteGroup()
deleteGroup()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
刪除這個聯絡人群組。
僅刪除非系統群組;無法刪除系統群組。
// The code below retrieves a contact group named "Work Friends" and deletes it var group = ContactsApp.getContactGroup('Work Friends'); group.deleteGroup();
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
另請參閱
getContacts()
getContacts()
getGroupName()
getGroupName()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
傳回這個群組的名稱。
回攻員
String
:這個群組的名稱
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
getId()
getId()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
取得這個聯絡人群組的 ID。
// The code below retrieves a contact group named "Work Friends" and gets its id var group = ContactsApp.getContactGroup('Work Friends'); var id = group.getId();
回攻員
String
:這個群組的 ID
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
getName()
getName()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
取得這個聯絡人群組的名稱。
// The code below creates a new contact group and then retrieves its name var group = ContactsApp.createContactGroup('Work Friends'); var name = group.getName();
回攻員
String
:這個聯絡人群組的名稱
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
另請參閱
isSystemGroup()
isSystemGroup()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
取得布林值,判斷這個聯絡人群組是系統群組 (可刪除) 或 而不是
系統群組是 Google 聯絡人中預先定義的一組群組,例如「我的 聯絡人」、「家人」、「同事」等等,系統群組的名稱通常會包含 「系統群組」。
// The code below retrieves two contact groups, then logs whether or not // each is a system group. var myGroup = ContactsApp.getContactGroup('Work Friends'); var systemGroup = ContactsApp.getContactGroup('System Group: Coworkers'); Logger.log(myGroup.isSystemGroup()); // Returns false, if the group exists. Logger.log(systemGroup.isSystemGroup()); // Returns true.
回攻員
Boolean
:這個聯絡人群組是否為系統群組
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
removeContact(contact)
removeContact(contact)
已淘汰。這個函式已淘汰,不應用於新的指令碼。
將指定聯絡人從這個群組中移除
// The code below retrieves all the contacts named "John Doe' and removes them from the // "Work Friends" contact group var contacts = ContactsApp.getContactsByName('John Doe'); var group = ContactsApp.getContactGroup('Work Friends'); for (var i in contacts) { group.removeContact(contacts[i]); }
參數
名稱 | 類型 | 說明 |
---|---|---|
contact |
| 將聯絡人從群組中移除 |
回攻員
:這個聯絡人群組ContactGroup
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
另請參閱
setGroupName(name)
setGroupName(name)
已淘汰。這個函式已淘汰,不應用於新的指令碼。
設定這個群組的名稱。
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 為這個群組設定的名稱 |
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
setName(name)
setName(name)
已淘汰。這個函式已淘汰,不應用於新的指令碼。
設定這個聯絡人群組的名稱。
// The code below retrieves the contact group named "Work Friends" and renames it to // "Work Buddies" var group = ContactsApp.getContactGroup('Work Friends'); group.setName('Work Buddies');
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 聯絡人群組的新名稱 |
回攻員
:這個聯絡人群組ContactGroup
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds