Class PromptResponse

PromptResponse

表示された prompt ダイアログに対するレスポンス Google アプリの UI 環境です。レスポンスには、ユーザーが入力したテキストが含まれます。 ダイアログの入力フィールドに表示され、ユーザーがダイアログを閉じるためにクリックしたボタンが示されます。

// Display a dialog box with a title, message, input field, and "Yes" and "No" buttons. The
// user can also close the dialog by clicking the close button in its title bar.
var ui = DocumentApp.getUi();
var response = ui.prompt('Getting to know you', 'May I know your name?', ui.ButtonSet.YES_NO);

// Process the user's response.
if (response.getSelectedButton() == ui.Button.YES) {
  Logger.log('The user\'s name is %s.', response.getResponseText());
} else if (response.getSelectedButton() == ui.Button.NO) {
  Logger.log('The user didn\'t want to provide a name.');
} else {
  Logger.log('The user clicked the close button in the dialog\'s title bar.');
}

メソッド

メソッド戻り値の型概要
getResponseText()Stringユーザーがダイアログの入力フィールドに入力したテキストを取得します。
getSelectedButton()Buttonユーザーがダイアログを閉じるためにクリックしたボタンを取得します。

詳細なドキュメント

getResponseText()

ユーザーがダイアログの入力フィールドに入力したテキストを取得します。テキストは入力可能な状態でも ユーザーが「キャンセル」などの否定的な意味を持つボタンをクリックしてダイアログを閉じたまたは ダイアログのタイトルバーの閉じるボタン。getSelectedButton()は ユーザーが意図したレスポンス テキストが有効かどうか。

戻る

String - ユーザーがダイアログの入力フィールドに入力したテキスト。


getSelectedButton()

ユーザーがダイアログを閉じるためにクリックしたボタンを取得します。ユーザーが閉じるボタンをクリックして すべてのダイアログのタイトルバーに含まれている場合、このメソッドは Button.CLOSE を返します。

戻る

Button - ユーザーがクリックしたボタン。