Class CustomField
內容詳盡的說明文件
getLabel()
取得這個欄位的標籤。可以是 Field、ExtendedField 或 String。
// Logs the label for all the address fields associated with contact
// 'John Doe'. This method can be similarly called for any field that has
// a label.
var contacts = ContactsApp.getContactsByName('John Doe');
var addressFields = contacts[0].getAddresses();
for (var i = 0; i < addressFields.length; i++) {
Logger.log(addressFields[i].getLabel());
}
回攻員
Object
:這個欄位的標籤
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
setLabel(label)
設定這個欄位的標籤。
// Sets the label to 'Apartment' for the first address field associated
// with contact 'John Doe'. This method can be similarly called for any
// field that has a label.
var contacts = ContactsApp.getContactsByName('John Doe');
var addressFields = contacts[0].getAddresses();
addressFields[0].setLabel('Apartment');
參數
名稱 | 類型 | 說明 |
label | String | 這個欄位的新標籤 |
回攻員
CustomField
:這個欄位適用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
已淘汰的方法
deleteCustomField()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
刪除這個欄位。
var contacts = ContactsApp.getContactsByName('John Doe');
var fields = contacts[0].getCustomFields();
for (var i = 0; i < fields.length; i++) {
if (fields[i].getLabel() == 'foo') {
fields[i].deleteCustomField();
}
}
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
getValue()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
取得欄位的值。
// Logs the value of all the custom fields for contact 'John Doe'
var contacts = ContactsApp.getContactsByName('John Doe');
var fields = contacts[0].getCustomFields();
for (var i in fields) {
Logger.log(fields[i].getValue());
}
回攻員
Object
:儲存在欄位中的值
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
setLabel(field)
已淘汰。這個函式已淘汰,不應用於新的指令碼。
設定這個欄位的標籤。
// Sets the first custom field associated with contact 'John Doe' to use 'Mail application' as
// a label, with 'Gmail' as the value.
var contacts = ContactsApp.getContactsByName('John Doe');
var field = contacts[0].getCustomFields()[0];
field.setLabel('Mail application');
field.setValue('Gmail');
參數
回攻員
CustomField
:這個欄位適用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
setValue(value)
已淘汰。這個函式已淘汰,不應用於新的指令碼。
設定這個欄位的值。
// Sets the first custom field associated with contact 'John Doe' to use 'Mail application' as
// a label, with 'Gmail' as the value.
var contacts = ContactsApp.getContactsByName('John Doe');
var field = contacts[0].getCustomFields()[0];
field.setLabel('Mail application');
field.setValue('Gmail');
參數
回攻員
CustomField
:這個欄位適用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.google.com/m8/feeds
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-09-10 (世界標準時間)。
[null,null,["上次更新時間:2024-09-10 (世界標準時間)。"],[[["`CustomField` is deprecated and the People API advanced service should be used instead."],["It represents a custom field within a Contact and previously allowed for getting, setting, and deleting custom field data."],["`getLabel()` and `setLabel(label)` methods remain available for retrieving and setting the label of a custom field."],["Several methods, including `deleteCustomField()`, `getValue()`, `setLabel(field)`, and `setValue(value)`, are deprecated and should no longer be used."]]],[]]