:feat: refined defaults

This commit is contained in:
wangfengming
2020-07-15 14:10:37 +08:00
parent 75a03f1576
commit 36e1c5fe6a
3 changed files with 28 additions and 38 deletions

View File

@ -1,6 +1,4 @@
import { Size, SizeComplexScript } from "file/paragraph/run/formatting";
import { IRunStylePropertiesOptions, RunProperties } from "file/paragraph/run/properties";
import { IFontAttributesProperties, RunFonts } from "file/paragraph/run/run-fonts";
import { XmlComponent } from "file/xml-components";
export class RunPropertiesDefaults extends XmlComponent {
@ -11,15 +9,4 @@ export class RunPropertiesDefaults extends XmlComponent {
this.properties = new RunProperties(options);
this.root.push(this.properties);
}
public size(size: number): RunPropertiesDefaults {
this.properties.push(new Size(size));
this.properties.push(new SizeComplexScript(size));
return this;
}
public font(font: string | IFontAttributesProperties): RunPropertiesDefaults {
this.properties.push(new RunFonts(font));
return this;
}
}