SetTableCellMarginTop
Specify the amount of space which will be present between the top extent of the cell contents and the top 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 above the top 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 top 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.SetTableCellMarginTop(720);
oDocument.Push(oTable);
builder.SaveFile("docx", "SetTableCellMarginTop.docx");
builder.CloseFile();
Resulting document