SetTableCellMarginRight
Specify the amount of space which will be present between the right extent of the cell contents and the right
border of all table cells within the parent table (or table row).
Parameters:
Name |
Type |
Description |
nValue |
twips
|
The value for the amount of space to the right extent of the cell measured in twentieths of a point (1/1440 of an inch). |
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oParagraph.AddText("We set the right margin for the cells in the table to be half an inch:");
oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered - Accent 5"));
oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
oTable.SetStyle(oTableStyle);
oTable.SetTableCellMarginRight(720);
oDocument.Push(oTable);
builder.SaveFile("docx", "SetTableCellMarginRight.docx");
builder.CloseFile();
Resulting document