Google Apps Script API
    Preparing search index...

    This class provides access to dialog boxes specific to Google Sheets.

    The methods in this class are only available for use in the context of a Google Spreadsheet. Please use G Suite dialogs instead. See also

    ButtonSet

    interface Browser {
        Buttons: typeof GoogleAppsScript.Base.ButtonSet;
        inputBox(prompt: string): string;
        inputBox(prompt: string, buttons: GoogleAppsScript.Base.ButtonSet): string;
        inputBox(
            title: string,
            prompt: string,
            buttons: GoogleAppsScript.Base.ButtonSet,
        ): string;
        msgBox(prompt: string): string;
        msgBox(prompt: string, buttons: GoogleAppsScript.Base.ButtonSet): string;
        msgBox(
            title: string,
            prompt: string,
            buttons: GoogleAppsScript.Base.ButtonSet,
        ): string;
    }
    Index

    Properties

    Methods

    Properties

    Methods