表の行数・列数調整

表の行と列は配列の要素数に併せて。追加・削除されます。

行や列が追加されたときに表がどちら向きに伸びるかは、horizontal_sizingvertical_sizingオプションで指定できます。

レファレンス: Tableオブジェクト

ダウンロード: input.zip · output.pptx

template.pptx

1
template.pptx slide 1

output.pptx

1
output.pptx slide 1
2
output.pptx slide 2

data.json

{
  "slides": [
    {
      "template": 1,
      "my-table": {
        "type": "table",
        "rows": [
          ["A-1", "A-2", "A-3", "A-4", "A-5"],
          ["B-1", "B-2", "B-3", "B-4", "B-5"],
          ["C-1", "C-2", "C-3", "C-4", "C-5"],
          ["D-1", "D-2", "D-3", "D-4", "D-5"],
          ["E-1", "E-2", "E-3", "E-4", "E-5"]
        ]
      }
    },
    {
      "template": 1,
      "my-table": {
        "type": "table",
        "rows": [
          ["A-1", "A-2", "A-3"],
          ["B-1", "B-2", "B-3"]
        ]
      }
    }
  ]
}