Solved
Weblink (CreoJS) Table.SetText Not Working
Has anyone had luck with table.settext? For me it's breaking and a try/catch isn't throwing the error message. The table is generating up to this point.
I know it's breaking because if I moved the mergeregion after the settext, that doesn't work, and the rest of my code isn't running either.
Any help would be appreciated! Thanks!
var dwgTable = drawing.CreateTable (tabinstrs);
var topLeft = pfcCreate ("pfcTableCell").Create (1, 1);
var bottomRight = pfcCreate ("pfcTableCell").Create (1, 5);
dwgTable.MergeRegion (topLeft, bottomRight, null);
try {
dwgTable.SetText(1, 1 , "CONN NAME PART NUMBER");
} catch (err) {
alert("Error setting text in table cell");
}

