SetCellMarginTop
Specifies the amount of space which shall be left between the top extent of the current cell contents and the
top edge border of a specific individual table cell within a table.
Parameters:
Name |
Type |
Description |
nValue |
twips
|
If this value is null , then default table cell bottom margin shall be used,
otherwise override the table cell bottom margin with specified value for the current cell. |
Example
Copy code
builder.CreateFile("pptx");
oPresentation = Api.GetPresentation();
oTable = Api.CreateTable(2, 4);
oRow = oTable.GetRow(0);
oCell = oRow.GetCell(0);
oContent = oCell.GetContent();
oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is just a sample text.");
oContent.Push(oParagraph);
oCell.SetCellMarginTop(720);
oSlide = oPresentation.GetSlideByIndex(0);
oSlide.RemoveAllObjects();
oSlide.AddObject(oTable);
builder.SaveFile("pptx", "SetCellMarginTop.pptx");
builder.CloseFile();
Resulting document