PowerPoint Generator API
  • PowerPoint Generator API
  • Getting started
    • Quick start
  • API reference
    • token/create
    • generator/create
  • Knowledge base
    • Key concepts
    • Templating your presentation
    • Building your JSON payload
    • Finding shape names
  • JSON/ PPTX Reference
    • presentation
    • slides
    • shapes
      • textbox
      • chart
      • picture
      • table
    • tags
    • Deprecated
  • Examples
    • Presentation
      • Naming output presentation
      • Using multiple templates
    • Slide
      • Change shape size and position
      • Change shape background color
      • Hide or remove shape
      • Replacing tags
    • Textboxes
      • Add text
      • Set font type and size
      • Set font color and font background color
      • Set bold, italic & underline
      • Set text alignment
      • Set text indentation
      • Set text line spacing
      • Using bullet-points
    • Chart
      • Change font settings
      • Insert data
      • Adjust chart legend
      • Appending to data labels
    • Pictures
    • Table
      • Populate simple table
      • Using `text_runs` in Table cells
      • Handling merged cells
      • Update a specific cells in existing table
    • Tags
Powered by GitBook
On this page
  • Presentations
  • Pages
  • Shapes

Was this helpful?

  1. Knowledge base

Key concepts

In this page you’ll find basic concepts you need to successfully use PowerPointGeneratorAPI.

Presentations

The outermost container in PowerPointGeneratorAPI is called a Presentation.

A presentation contains a list of pages. Each page contains a list of shapes.

Pages

There are 3 types of pages:

Page Type
Description

Slide Masters

Slide Masters define the default text styles, background, and page elements that appear in all of the slides that use this master. Shapes that must appear on all slides should be added to the master.

Most presentations have one Slide Master, but some may have several.

Slide Layouts

Slide Layouts serve as a template for how shapes will be arranged by default on slides using a layout. Each layout is associated with a Slide Master.

Slides

These pages contain the content you are presenting to your audience.

Most slides are based on a Slide Master and a Slide Layout. You can specify which layout to use for each slide when it is created.

Shapes

Everything on a page is a shape. There are different types of shapes, each one with its own set of behaviors.

Shape Type
Description

Textbox

A Text box shape is designed to display text content.

Picture

A Picture shape is a graphic, like a drawing, a photo or any kind of image that has been imported into your PowerPoint presentation.

Table

A Table shape is an array of rows and columns (cells) to contain data you want to show in your presentation.

Chart

A Chart shape is a visual representation of data.

You’ll find a few examples of different charts in the Charts section in this documentation. That’s a limited list, PowerPoint Generator API supports almost any chart you can come up with.

Previousgenerator/createNextTemplating your presentation

Last updated 2 years ago

Was this helpful?