SetTextDirection
Specifies the direction of the text flow for the current table cell.
Parameters:
Name |
Type |
Description |
sType |
"lrtb" | "tbrl" | "btlr"
|
The type of the text flow direction. |
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(0);
oRow.SetHeight(30 * 36000);
var oCell = oRow.GetCell(0);
oCell.SetTextDirection("tbrl");
var oContent = oCell.GetContent();
var oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is just a sample text.");
oContent.Push(oParagraph);
var oSlide = oPresentation.GetSlideByIndex(0);
oSlide.RemoveAllObjects();
oSlide.AddObject(oTable);
builder.SaveFile("pptx", "SetTextDirection.pptx");
builder.CloseFile();
Resulting document