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
JavaScript
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);
}
}