devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 556 B
TypeScript
import { ParagraphStyle } from '../../../../../model/paragraph/paragraph-style';
import { RtfImportData } from '../../rtf-import-data';
import { RtfBaseStyleImporter } from './base-style-importer';
export declare class RtfParagraphStyleImporter extends RtfBaseStyleImporter<ParagraphStyle> {
paragraphTableStyles: Record<number, number>;
addStyle(style: ParagraphStyle): ParagraphStyle;
ensureStyleExist(): void;
constructor(data: RtfImportData);
get styleCollection(): ParagraphStyle[];
createEmpty(): ParagraphStyle;
}