SetCellMarginRight
Specify the amount of space which will be left between the right extent of the cell contents and the border of a specific table cell within a table.
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). If this value is null , then default table cell right margin will be used, otherwise
the table cell right margin will be overridden with the specified value for the current cell. |
Returns:
-
This method doesn't return any data.
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oParagraph.AddText("We create a 3x3 table and add a half an inch wide right margin to all cells:");
oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered - Accent 5"));
oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
oTableCellPr = oTableStyle.GetTableCellPr();
oTableCellPr.SetCellMarginRight(720);
oTable.SetStyle(oTableStyle);
oDocument.Push(oTable);
builder.SaveFile("docx", "SetCellMarginRight.docx");
builder.CloseFile();
Resulting document