UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 465 B
import { DestinationType } from '../utils/destination-type'; import { DestinationBase } from './destination'; export class HexContentDestination extends DestinationBase { constructor() { super(...arguments); this.firstPosition = true; } get destinationType() { return DestinationType.HexContentDestination; } get controlCharHT() { return null; } ; processCharCore(ch) { this.processBinChar(ch); } }