adds textDirection to table cells

This commit is contained in:
bs595r
2020-05-10 10:36:25 -07:00
parent 3eca81d3f5
commit 25a7ce3742
5 changed files with 93 additions and 3 deletions

View File

@ -6,6 +6,8 @@ import {
GridSpan,
TableCellBorders,
TableCellWidth,
TDirection,
TextDirection,
VAlign,
VerticalAlign,
VerticalMerge,
@ -61,4 +63,10 @@ export class TableCellProperties extends IgnoreIfEmptyXmlComponent {
return this;
}
public setTextDirection(type: TextDirection): TableCellProperties {
this.root.push(new TDirection(type));
return this;
}
}