Enum DestinationType
DestinationType
列舉代表支援的表單/回應目的地類型。所有表單,包括
在沒有明確設定目的地的情況下,將回應副本儲存在表單的
回應存放區。您可以從 FormApp.DestinationType
存取目的地類型。
如要呼叫列舉,您可以呼叫其父項類別、名稱和屬性。例如
FormApp.DestinationType.SPREADSHEET
。
// Open a form by ID and create a new spreadsheet.
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var ss = SpreadsheetApp.create('Spreadsheet Name');
// Update the form's response destination.
form.setDestination(FormApp.DestinationType.SPREADSHEET, ss.getId());
屬性
屬性 | 類型 | 說明 |
SPREADSHEET | Enum | Google 試算表做為表單回應的目的地。 |
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-08-21 (世界標準時間)。
[null,null,["上次更新時間:2024-08-21 (世界標準時間)。"],[[["`DestinationType` is an enum defining where form responses can be sent, with all responses saved in the form's response store by default."],["It allows specifying a Google Sheet as a destination for form responses using `FormApp.DestinationType.SPREADSHEET`."],["You can set the destination of a form using the `setDestination()` method, providing the destination type and ID."]]],[]]