UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 408 B
import { DestinationType } from '../utils/destination-type'; import { DestinationBase } from './destination'; export class HexContentDestination extends DestinationBase { get destinationType() { return DestinationType.HexContentDestination; } get controlCharHT() { return null; } ; val; firstPosition = true; processCharCore(ch) { this.processBinChar(ch); } }