UNPKG

devexpress-richedit

Version:

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

11 lines (10 loc) 394 B
import { LeafElementDestination } from '../destination'; export class CharacterFormattingLeafElementDestination extends LeafElementDestination { constructor(data, characterProperties) { super(data); this.characterProperties = characterProperties; } setProperty(newValue) { this.characterProperties.setValue(this.getDescriptor(), newValue); } }