devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 420 B
JavaScript
import { LeafElementDestination } from '../destination';
export class ParagraphFormattingLeafElementDestination extends LeafElementDestination {
paragraphProperties;
constructor(data, paragraphProperties) {
super(data);
this.paragraphProperties = paragraphProperties;
}
setProperty(newValue) {
this.paragraphProperties.setValue(this.getDescriptor(), newValue);
}
}