devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 911 B
TypeScript
import { RtfParagraphProperties } from '../../model/paragraph/paragraph-properties';
import { RtfTableReader } from '../table-reader';
import { RtfTableReaderStateBase } from './state-base';
export declare class TableRtfTableManagerState extends RtfTableReaderStateBase {
constructor(reader: RtfTableReader);
onEndParagraph(paragraphFormattingInfo: RtfParagraphProperties): void;
protected validateCurrentTable(): void;
protected onEndInTableParagraph(nestingLevel: number): void;
isParagraphInTable(paragraphFormattingInfo: RtfParagraphProperties): boolean;
isCurrentTableNotComplete(): boolean;
onEndRow(): void;
protected onEndRowCore(): void;
onEndCell(): void;
protected onEndCellCore(nestingLevel: number): void;
onEndNestedRow(): void;
onEndNestedCell(): void;
onStartNestedTableProperties(): void;
onTableRowDefaults(): void;
}