SetTableCellMarginRight
Specifies an amount of space which will be left between the right extent of the cell contents and the right border of all table cells within the parent table (or table row).
Inherited from ApiTablePr.SetTableCellMarginRight.
Example
Specify an amount of space which will be left between the right extent of the cell contents and the right border of all table cells within the parent table.
// How to add margin to the right of the cell.
// Create a 3x3 table and add the right cell margin.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let tablePr = tableStyle.GetTablePr();
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
tablePr.SetTableCellMarginRight(720);
table.SetTableLook(true, true, true, true, false, false);
table.SetStyle(tableStyle);
let cell = table.GetCell(0, 0).GetContent().GetElement(0).AddText("This is just a sample text to show that the right cell margin is 36 points.");
doc.Push(table);