表組み

表組みに文字列の配列を流し込みます。

SlidePackはスライド内の表の代替テキストを読み取り、指定のキー(この例では"table1")と一致する表にデータを流し込みます。 代替テキストを編集するには、PowerPointで表を右クリックし、代替テキストを編集を選びます。

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

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

template.pptx

1
template.pptx slide 1

output.pptx

1
output.pptx slide 1

data.json

{
  "slides": [
    {
      "template": 1,
      "table1": {
        "type": "table",
        "rows": [
          ["配列を", "流し込む", "ことが", "できます", ""],
          ["a", "b", "c", "d", "e"],
          ["f", "g", "h", "i", "j"],
          ["k", "l", "m", "n", "o"],
          ["p", "q", "r", "s", "t"]
        ]
      },
      "table2": {
        "type": "table",
        "rows": [
          ["テンプレート側でセルが結合されていると", "", "", "", ""],
          ["結合状態は", "", "維持されます", "", ""],
          ["", "", "", "", ""],
          ["", "", "", "", ""],
          ["", "", "", "", ""],
          ["p", "q", "r", "s", "t"],
          ["u", "v", "w", "x", "y"]
        ]
      }
    }
  ]
}