devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 455 B
JavaScript
import { CodePages } from '../encoding/code-pages';
import { RtfCharset } from './character/enums';
import { RtfColorIndexCollection } from './color-collections';
export class RtfDocumentProperties {
constructor() {
this.charset = RtfCharset.Ansi;
this.defaultCodePage = CodePages.default;
this.colorIndexes = new RtfColorIndexCollection();
this.listTable = [];
this.listOverrideTable = [];
}
}