SetTextDirection
function SetTextDirection(sType: lrtb | tbrl | btlr = null): void
Description
Specifies the direction of the text flow for this table cell.
Parameters
- sType
lrtb | tbrl | btlr
null The available types of the text direction in the table cell:
"lrtb"
- text direction left-to-right moving from top to bottom,
"tbrl"
- text direction top-to-bottom moving from right to left,"btlr"
- text direction bottom-to-top moving from left to right.
- text direction left-to-right moving from top to bottom,
Returns
void
Try It
var oDocument = Api.GetDocument();
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"));
var oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
var oTableRow = oTable.GetRow(0);
oTableRow.SetHeight("atLeast", 1440);
var oTableCellPr = oTableStyle.GetTableCellPr();
oTableCellPr.SetTextDirection("btlr");
var oCell = oTable.GetRow(0).GetCell(0);
var oParagraph = oCell.GetContent().GetElement(0);
oParagraph.AddText("btlr");
oTable.SetStyle(oTableStyle);
oDocument.Push(oTable);