L'implementazione del bean di un feedback, che contiene proprietà comuni a tutti i feedback, ad esempio il testo visualizzato o i link.
I feedback possono essere aggiunti agli elementi Form
valutabili.
// 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() .setDisplayText( '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 mostrati all'utente come un elenco di link utili.
Invio
String[]
: un elenco degli URL associati al feedback
get Text()
Recupera il testo visualizzato del feedback. Questo testo viene mostrato all'utente dopo che ha inviato una risposta.
Invio
String
: il testo del feedback