SetTableCellMarginLeft
function SetTableCellMarginLeft(nValue: any = null): void
Description
Specifies an amount of space which will be left between the left extent of the cell contents and the left border of all table cells within the parent table (or table row).
Parameters
- nValue
any
null The value for the amount of space to the left extent of the cell measured in twentieths of a point (1/1440 of an inch).
Returns
void
Try It
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"));
var oTablePr = oTableStyle.GetTablePr();
var oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
oTablePr.SetTableCellMarginLeft(720);
oTable.SetTableLook(true, true, true, true, false, false);
oTable.SetStyle(oTableStyle);
var oCell = oTable.GetCell(0, 0).GetContent().GetElement(0).AddText("This is just a sample text to show that the left cell margin is 36 points.");
oDocument.Push(oTable);