Enum DestinationType
目标类型
表示表单回复目标支持的类型的枚举。所有表单(包括未明确设置目标位置的表单)都会在表单的回复存储区中保存回复的副本。您可以通过 FormApp.DestinationType
访问目的地类型。
如需调用枚举,您可以调用其父类、名称和属性。例如
FormApp.DestinationType.SPREADSHEET
。
// Open a form by ID and create a new spreadsheet.
const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
const 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-12-22。
[null,null,["最后更新时间 (UTC):2024-12-22。"],[[["`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."]]],[]]