UNPKG

devexpress-richedit

Version:

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

20 lines (19 loc) 713 B
import { DestinationBase } from './base/destination'; import { DestinationType } from './utils/destination-type'; export class DestinationRevisionAuthorTable extends DestinationBase { get destinationType() { return DestinationType.DestinationRevisionAuthorTable; } get controlCharHT() { return null; } get keywordHT() { return null; } author = ""; processCharCore(ch) { if (ch == ';') { this.importer.importers.rangePermission.revisionAuthors.authors.push(this.author); this.author = ""; } else this.author += ch; } createClone() { return new DestinationRevisionAuthorTable(this.importer); } }