31 lines
774 B
TypeScript
31 lines
774 B
TypeScript
import {XmlComponent} from "../../../docx/xml-components";
|
|
|
|
interface LatentStyleExceptionAttributesProperties {
|
|
name?: string;
|
|
uiPriority?: string;
|
|
qFormat?: string;
|
|
semiHidden?: string;
|
|
unhideWhenUsed?: string;
|
|
}
|
|
|
|
export class LatentStyleExceptionAttributes extends XmlComponent {
|
|
private _attr: Object;
|
|
|
|
xmlKeys = {
|
|
name: "w:name",
|
|
uiPriority: "w:uiPriority",
|
|
qFormat: "w:qFormat",
|
|
semiHidden: "w:semiHidden",
|
|
unhideWhenUsed: "w:unhideWhenUsed"
|
|
};
|
|
|
|
constructor(properties?: LatentStyleExceptionAttributesProperties) {
|
|
super("_attr");
|
|
this._attr = properties;
|
|
|
|
if (!properties) {
|
|
this._attr = {};
|
|
}
|
|
this._attr["xmlKeys"] = this.xmlKeys;
|
|
}
|
|
} |