UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

24 lines (23 loc) 966 B
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 { onlyAllowEditingOfFormFields; firstPagePaperSource; otherPagePaperSource; textDirection; verticalTextAlignment; rightToLeft; 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; } }