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) 420 B
export class ModelFontApi { constructor(processor, internalItem) { this._internalItem = internalItem; this._processor = processor; } get name() { return this._internalItem.name; } get cssName() { return this._internalItem.cssString; } delete() { this._processor.modelManager.modelManipulator.font.removeFont(this._internalItem); } }