Enum DestinationType
DestinationType
Desteklenen form yanıtı hedefi türlerini temsil eden bir sıralama. Şunlar dahil tüm formlar:
açık bir şekilde bir hedef ayarlanmamışsa yanıtların bir kopyasını formun
yanıt deposu. Hedef türlerine FormApp.DestinationType
bağlantısından erişilebilir.
Sıralama çağırmak için üst sınıfı, adını ve özelliğini çağırırsınız. Örneğin,
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());
Özellikler
Özellik | Tür | Açıklama |
SPREADSHEET | Enum | Form yanıtlarının hedefi olarak bir Google E-Tablolar e-tablosu. |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2024-08-21 UTC.
[null,null,["Son güncelleme tarihi: 2024-08-21 UTC."],[[["`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."]]],[]]