SetVerticalAlign
Specifies the vertical alignment for text within the current table cell.
Syntax
expression.SetVerticalAlign(sType);
expression
- A variable that represents a ApiTableCell class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
sType | Required | "top" | "center" | "bottom" | The type of the vertical alignment. |
Returns
This method doesn't return any data.
Example
This example specifies the vertical alignment for text within the current table cell.
- Code
- Result
// How to set the cell text vertical alignment.
// Create a table and set the text alignment of its cell from the row.
const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
const table = Api.CreateTable(2, 4);
const row = table.GetRow(1);
row.SetHeight(30 * 36000);
const cell = row.GetCell(0);
const content = cell.GetContent();
const paragraph = Api.CreateParagraph();
paragraph.AddText("This is just a sample text.");
content.Push(paragraph);
cell.SetVerticalAlign("bottom");
slide.RemoveAllObjects();
slide.AddObject(table);