How does one change a tables title to something meaningful
Tables come up with a title of "Table 1:", how do I change that to be more meaningful like "Sale Projections by Region"?
//Create the table
var textLoc, tbl;
textLoc = new TextLoc (doc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf, 0);
// NewTable(format, numCols, numBodyRows, numHeaderRows, numFooterRows, textLoc)
tbl = doc.NewTable ("Format A", 4, 10, 1, 0, textLoc);
//Change the table title from "Table 1:" to "Sale Projections by Region"
???
