TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

SetVerticalAlign

SetVerticalAlign(sType)

Specifies the vertical alignment for text within the current table cell.

Parameters:

Name Type Description
sType "top" | "center" | "bottom"

The type of the vertical alignment.

Returns:

This method doesn't return any data.

Example

Copy code
builder.CreateFile("pptx");
var oPresentation = Api.GetPresentation();
var oTable = Api.CreateTable(2, 4);
var oRow = oTable.GetRow(1);
oRow.SetHeight(30 * 36000);
var oCell = oRow.GetCell(0);
var oContent = oCell.GetContent();
var oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is just a sample text.");
oContent.Push(oParagraph);
oCell.SetVerticalAlign("bottom");
var oSlide = oPresentation.GetSlideByIndex(0);
oSlide.RemoveAllObjects();
oSlide.AddObject(oTable);
builder.SaveFile("pptx", "SetVerticalAlign.pptx");
builder.CloseFile();

Resulting document