This commit is contained in:
amitm02
2018-07-25 15:02:58 +03:00
parent 0689489985
commit 696b5daf5c
211 changed files with 252 additions and 84025 deletions

View File

@ -124,6 +124,17 @@ export class Size extends XmlComponent {
}
}
export class SizeCs extends XmlComponent {
constructor(size: number) {
super("w:szCs");
this.root.push(
new Attributes({
val: size,
}),
);
}
}
export class RTL extends XmlComponent {
constructor() {
super("w:rtl");
@ -133,4 +144,4 @@ export class RTL extends XmlComponent {
}),
);
}
}
}