Merge pull request #465 from dolanmiu/feat/right-indent
Add right indent
This commit is contained in:
@ -7,6 +7,7 @@ export interface IIndentAttributesProperties {
|
|||||||
readonly firstLine?: number;
|
readonly firstLine?: number;
|
||||||
readonly start?: number;
|
readonly start?: number;
|
||||||
readonly end?: number;
|
readonly end?: number;
|
||||||
|
readonly right?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties> {
|
class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties> {
|
||||||
@ -16,6 +17,7 @@ class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties
|
|||||||
firstLine: "w:firstLine",
|
firstLine: "w:firstLine",
|
||||||
start: "w:start",
|
start: "w:start",
|
||||||
end: "w:end",
|
end: "w:end",
|
||||||
|
right: "w:end", // alias
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user