UNPKG

devexpress-richedit

Version:

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

18 lines (17 loc) 552 B
import { CodePages } from '../encoding/code-pages'; import { RtfCharset } from './character/enums'; import { RtfColorIndexCollection } from './color-collections'; export class RtfDocumentProperties { colorIndexes; listTable; listOverrideTable; charset = RtfCharset.Ansi; defaultCodePage = CodePages.default; listTableComplete; listOverrideTableComplete; constructor() { this.colorIndexes = new RtfColorIndexCollection(); this.listTable = []; this.listOverrideTable = []; } }