すべてのフィードバックに共通するプロパティ(表示テキストなど)のセッターを含むベースの FeedbackBuilder。Feedback オブジェクトの作成に使用されます。
// Open a form by ID and add a new list item. const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); const item = form.addListItem(); item.setTitle('Do you prefer cats or dogs?'); item.setChoices([ item.createChoice('Dogs', true), item.createChoice('Cats', false), ]); // Add feedback which will be shown for correct responses; ie "Dogs". item.setFeedbackForCorrect( FormApp.createFeedback().setText('Dogs rule, cats drool.').build(), );
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
add | Quiz | フィードバックの補足資料へのリンクを追加します。 |
add | Quiz | フィードバックの補足資料へのリンクを追加します。 |
build() | Quiz | このビルダーに対応するタイプのフィードバックを作成します。 |
copy() | Quiz | このビルダーのコピーを返します。 |
set | Quiz | フィードバック テキストを設定します。 |
詳細なドキュメント
add Link(url)
フィードバックの補足資料へのリンクを追加します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
url | String | 表示テキストの下に表示するリンク |
戻る
Quiz
- チェーン用の this Quiz
add Link(url, displayText)
フィードバックの補足資料へのリンクを追加します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
url | String | 表示テキストの下に表示するリンク |
display | String | リンクに表示するテキスト |
戻る
Quiz
- チェーン用の this Quiz
build()
copy()
set Text(text)
フィードバック テキストを設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | String | 新しいテキスト |
戻る
Quiz
- チェーン用の this Quiz