slide.addTable #1097
Strawberry0215
started this conversation in
General
slide.addTable
#1097
Replies: 1 comment
-
Are you looking for HTML-to-PowerPoint Docs |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @gitbrent I would like to ask if it is possible to addTable using Table id and not by rows?
for example;
let rows = [["Cell 1", "Cell 2", "Cell 3"]];
slide.addTable(rows, { w: 9 });
// TABLE 2: Multi-row table
// - each row's array element is an array of cells
let rows = [["A1", "B1", "C1"]];
slide.addTable(rows, { align: "left", fontFace: "Arial" });
instead of defining the cell one by one, I want to use ID Table. Thank you
Beta Was this translation helpful? Give feedback.
All reactions