Add OutlineLevel Paragraph property
This commit is contained in:
17
src/file/paragraph/links/outline-level.ts
Normal file
17
src/file/paragraph/links/outline-level.ts
Normal file
@ -0,0 +1,17 @@
|
||||
// http://officeopenxml.com/WPparagraph.php
|
||||
import { Attributes, XmlComponent } from "file/xml-components";
|
||||
|
||||
export class OutlineLevel extends XmlComponent {
|
||||
public readonly level: string;
|
||||
|
||||
constructor(level: string) {
|
||||
super("w:outlineLvl");
|
||||
this.level = level;
|
||||
this.root.push(
|
||||
new Attributes({
|
||||
val: level,
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user