Class QuizFeedback

  • QuizFeedback objects store common feedback properties like display text and links for Google Forms.

  • Feedback can be linked to form items and automatically displayed based on user responses (e.g., incorrect answers).

  • Developers can use getLinkUrls() and getText() methods to retrieve associated URLs and display text from QuizFeedback objects.

QuizFeedback

The bean implementation of a Feedback, which contains properties common to all feedback, such as display text or links.

Feedback can be added to gradeable Form items.

// Setting feedback which should be automatically shown when a user responds to
// a question incorrectly.
constform=FormApp.create('My Form');
consttextItem=form.addTextItem().setTitle(
'Re-hydrating dried fruit is an example of what?');
constfeedback=
FormApp.createFeedback()
.setDisplayText(
'Good answer, but not quite right. Please review chapter 4 before next time.',
)
.addLink('http://wikipedia.com/osmosis');
textItem.setFeedbackForIncorrect(feedback);

Methods

MethodReturn typeBrief description
getLinkUrls() String[]Gets a list of the URLs associated with the Feedback.
getText() StringGets the Feedback's display text.

Detailed documentation

getLinkUrls()

Gets a list of the URLs associated with the Feedback. These are displayed to the user as a list of helpful links.

Return

String[] — a list of the URLs associated with the Feedback


getText()

Gets the Feedback's display text. This text is shown to the user after they've submitted a response.

Return

String — the Feedback's text

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024年12月02日 UTC.