UNPKG

devexpress-richedit

Version:

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

16 lines (15 loc) 584 B
export class AnchorObjectPositionCalculatorBase { constructor(manager) { this.manager = manager; } get anchorInfo() { return this.obj.anchorInfo; } init(obj) { this.lp = this.manager.activeFormatter.layoutPosition; this.obj = obj; this.isRelativeCell = !!this.manager.activeFormatter.tableFormatter && (obj.anchorInfo.layoutTableCell || this.manager.model.compatibilitySettings.layoutInTableCell); this.isSimpleView = this.manager.innerClientProperties.viewsSettings.isSimpleView; } }