devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 719 B
JavaScript
import { DestinationBase } from './base/destination';
import { DestinationType } from './utils/destination-type';
export class CustomPropertiesDestination extends DestinationBase {
get destinationType() { return DestinationType.CustomPropertiesDestination; }
;
get controlCharHT() { return null; }
;
createClone() {
return new CustomPropertiesDestination(this.importer);
}
static onPropname(_importer, _parameterValue, _hasParameter) {
}
static onStaticval(_importer, _parameterValue, _hasParameter) {
}
static onProptType(_importer, _parameterValue, _hasParameter) {
}
static onLinkval(_importer, _parameterValue, _hasParameter) {
}
}