Google Apps Script API
    Preparing search index...

    Creates and opens Presentations that can be edited.

    // Open a presentation by ID.
    var preso = SlidesApp.openById('PRESENTATION_ID_GOES_HERE');
    
    // Create and open a presentation.
    preso = SlidesApp.create('Presentation Name');
    
    interface SlidesApp {
        AlignmentPosition: typeof AlignmentPosition;
        ArrowStyle: typeof ArrowStyle;
        AutoTextType: typeof AutoTextType;
        CellMergeState: typeof CellMergeState;
        ColorType: typeof ColorType;
        ContentAlignment: typeof ContentAlignment;
        DashStyle: typeof DashStyle;
        FillType: typeof FillType;
        LineCategory: typeof LineCategory;
        LineFillType: typeof LineFillType;
        LineType: typeof LineType;
        LinkType: typeof LinkType;
        ListPreset: typeof ListPreset;
        PageBackgroundType: typeof PageBackgroundType;
        PageElementType: typeof PageElementType;
        PageType: typeof GoogleAppsScript.Slides.PageType;
        ParagraphAlignment: typeof ParagraphAlignment;
        PlaceholderType: typeof PlaceholderType;
        PredefinedLayout: typeof PredefinedLayout;
        SelectionType: typeof SelectionType;
        ShapeType: typeof ShapeType;
        SheetsChartEmbedType: typeof SheetsChartEmbedType;
        SlideLinkingMode: typeof SlideLinkingMode;
        SlidePosition: typeof SlidePosition;
        SpacingMode: typeof SpacingMode;
        TextBaselineOffset: typeof TextBaselineOffset;
        TextDirection: typeof GoogleAppsScript.Slides.TextDirection;
        ThemeColorType: typeof GoogleAppsScript.Slides.ThemeColorType;
        VideoSourceType: typeof VideoSourceType;
        create(name: string): GoogleAppsScript.Slides.Presentation;
        getActivePresentation(): GoogleAppsScript.Slides.Presentation;
        getUi(): Ui;
        newAffineTransformBuilder(): AffineTransformBuilder;
        openById(id: string): GoogleAppsScript.Slides.Presentation;
        openByUrl(url: string): GoogleAppsScript.Slides.Presentation;
    }
    Index

    Properties

    AlignmentPosition: typeof AlignmentPosition
    ArrowStyle: typeof ArrowStyle
    AutoTextType: typeof AutoTextType
    CellMergeState: typeof CellMergeState
    ColorType: typeof ColorType
    ContentAlignment: typeof ContentAlignment
    DashStyle: typeof DashStyle
    FillType: typeof FillType
    LineCategory: typeof LineCategory
    LineFillType: typeof LineFillType
    LineType: typeof LineType
    LinkType: typeof LinkType
    ListPreset: typeof ListPreset
    PageBackgroundType: typeof PageBackgroundType
    PageElementType: typeof PageElementType
    ParagraphAlignment: typeof ParagraphAlignment
    PlaceholderType: typeof PlaceholderType
    PredefinedLayout: typeof PredefinedLayout
    SelectionType: typeof SelectionType
    ShapeType: typeof ShapeType
    SheetsChartEmbedType: typeof SheetsChartEmbedType
    SlideLinkingMode: typeof SlideLinkingMode
    SlidePosition: typeof SlidePosition
    SpacingMode: typeof SpacingMode
    TextBaselineOffset: typeof TextBaselineOffset
    TextDirection: typeof GoogleAppsScript.Slides.TextDirection
    ThemeColorType: typeof GoogleAppsScript.Slides.ThemeColorType
    VideoSourceType: typeof VideoSourceType

    Methods