Files
docx-js/ts/docx/run/formatting.ts

115 lines
2.1 KiB
TypeScript
Raw Normal View History

2017-03-08 20:32:30 +00:00
import { Attributes, XmlComponent } from "../xml-components";
2017-03-09 22:56:08 +00:00
export { Underline } from "./underline";
export { SubScript, SuperScript } from "./script";
2017-03-12 17:53:32 +01:00
export { RunFonts } from "./run-fonts";
2016-03-30 04:30:58 +01:00
2016-04-09 20:16:35 +01:00
export class Bold extends XmlComponent {
2016-05-26 15:08:34 +01:00
2016-03-30 04:30:58 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:b");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-03-30 04:30:58 +01:00
}));
}
}
2016-04-09 20:16:35 +01:00
export class Italics extends XmlComponent {
2016-04-03 01:44:18 +01:00
2016-03-30 04:30:58 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:i");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-03-30 04:30:58 +01:00
}));
}
}
2016-05-07 20:17:18 +01:00
export class Caps extends XmlComponent {
2016-03-30 04:30:58 +01:00
constructor() {
2016-05-07 20:40:18 +01:00
super("w:caps");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-05-07 20:40:18 +01:00
}));
}
}
export class Color extends XmlComponent {
constructor(color: string) {
super("w:color");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: color,
2016-05-07 20:40:18 +01:00
}));
}
}
export class DoubleStrike extends XmlComponent {
constructor() {
super("w:dstrike");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-05-07 20:40:18 +01:00
}));
}
}
export class Emboss extends XmlComponent {
constructor() {
super("w:emboss");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-05-07 20:40:18 +01:00
}));
}
}
export class Imprint extends XmlComponent {
constructor() {
super("w:imprint");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-05-07 20:40:18 +01:00
}));
}
}
export class Shadow extends XmlComponent {
constructor() {
super("w:shadow");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-05-07 20:40:18 +01:00
}));
}
}
export class SmallCaps extends XmlComponent {
constructor() {
super("w:smallCaps");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-05-07 20:40:18 +01:00
}));
}
}
export class Strike extends XmlComponent {
constructor() {
super("w:strike");
2016-04-09 20:16:35 +01:00
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: true,
2016-03-30 04:30:58 +01:00
}));
}
2016-05-07 20:40:18 +01:00
}
export class Size extends XmlComponent {
constructor(size: number) {
super("w:sz");
this.root.push(new Attributes({
2017-03-08 20:32:30 +00:00
val: size,
2016-05-07 20:40:18 +01:00
}));
}
2017-03-08 20:32:30 +00:00
}