Google Apps Script API
    Preparing search index...

    A notes page in a presentation.

    These pages contain the content for presentation handouts, including a a shape that contains the slide's speaker notes. Each slide has one corresponding notes page. Only the text in the speaker notes shape can be modified.

    interface NotesPage {
        getGroups(): GoogleAppsScript.Slides.Group[];
        getImages(): GoogleAppsScript.Slides.Image[];
        getLines(): GoogleAppsScript.Slides.Line[];
        getObjectId(): string;
        getPageElementById(id: string): GoogleAppsScript.Slides.PageElement;
        getPageElements(): GoogleAppsScript.Slides.PageElement[];
        getPlaceholder(
            placeholderType: PlaceholderType,
        ): GoogleAppsScript.Slides.PageElement;
        getPlaceholder(
            placeholderType: PlaceholderType,
            placeholderIndex: number,
        ): GoogleAppsScript.Slides.PageElement;
        getPlaceholders(): GoogleAppsScript.Slides.PageElement[];
        getShapes(): GoogleAppsScript.Slides.Shape[];
        getSheetsCharts(): GoogleAppsScript.Slides.SheetsChart[];
        getSpeakerNotesShape(): GoogleAppsScript.Slides.Shape;
        getTables(): GoogleAppsScript.Slides.Table[];
        getVideos(): GoogleAppsScript.Slides.Video[];
        getWordArts(): GoogleAppsScript.Slides.WordArt[];
        replaceAllText(findText: string, replaceText: string): number;
        replaceAllText(
            findText: string,
            replaceText: string,
            matchCase: boolean,
        ): number;
    }
    Index

    Methods