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 表格电子表格的形式回复表单回复。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-21。
[null,null,["最后更新时间 (UTC):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."]]],[]]