devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 811 B
JavaScript
export var VerticalAlignment;
(function (VerticalAlignment) {
VerticalAlignment[VerticalAlignment["Top"] = 0] = "Top";
VerticalAlignment[VerticalAlignment["Both"] = 1] = "Both";
VerticalAlignment[VerticalAlignment["Center"] = 2] = "Center";
VerticalAlignment[VerticalAlignment["Bottom"] = 3] = "Bottom";
})(VerticalAlignment || (VerticalAlignment = {}));
export class RtfGeneralSectionInfo {
copyFrom(obj) {
this.onlyAllowEditingOfFormFields = obj.onlyAllowEditingOfFormFields;
this.firstPagePaperSource = obj.firstPagePaperSource;
this.otherPagePaperSource = obj.otherPagePaperSource;
this.textDirection = obj.textDirection;
this.verticalTextAlignment = obj.verticalTextAlignment;
this.rightToLeft = obj.rightToLeft;
}
}