devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 711 B
JavaScript
import { DestinationSubDocument } from '../sub-document/destination-sub-document';
import { DestinationType } from '../utils/destination-type';
export class DefaultParagraphPropertiesDestination extends DestinationSubDocument {
get destinationType() { return DestinationType.DefaultParagraphPropertiesDestination; }
get controlCharHT() { return null; }
constructor(importer) {
super(importer, importer.subDocument);
}
get canAppendText() { return false; }
beforePopRtfState() {
}
createClone() {
return new DefaultParagraphPropertiesDestination(this.importer);
}
processCharCore(_ch) {
}
finalizeSubDocumentCreation() {
}
}