Rappresenta il feedback che può essere associato a elementi del modulo valutabili, contenenti proprietà come testo visualizzato e link utili.
Il feedback può essere aggiunto agli elementi valutabili Form.
// Setting feedback which should be automatically shown when a user responds to // a question incorrectly. const form = FormApp.create('My Form'); const textItem = form.addTextItem().setTitle( 'Re-hydrating dried fruit is an example of what?'); const feedback = FormApp.createFeedback() .setText( 'Good answer, but not quite right. Please review chapter 4 before next time.', ) .addLink('http://wikipedia.com/osmosis'); textItem.setFeedbackForIncorrect(feedback);
Metodi
| Metodo | Tipo restituito | Breve descrizione |
|---|---|---|
get | String[] | Recupera un elenco degli URL associati al feedback. |
get | String | Recupera il testo visualizzato del feedback. |
Documentazione dettagliata
get Link Urls()
Recupera un elenco degli URL associati al feedback. Questi vengono visualizzati all'utente come un elenco di link utili.
Indietro
String[]: un elenco degli URL associati al feedback
get Text()
Recupera il testo visualizzato del feedback. Questo testo viene mostrato all'utente dopo l'invio di una risposta.
Indietro
String: il testo del feedback