UNPKG

devexpress-richedit

Version:

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

17 lines (16 loc) 681 B
import { RtfTableCell } from '../model/table/rtf-table-cell'; import { RtfTableRowController } from './rtf-table-row-controller'; import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed'; export declare class RtfTableCellController { readonly rowController: RtfTableRowController; currentCell: RtfTableCell; constructor(rowController: RtfTableRowController); startNewCell(): void; isCurrentCellNotComplete(): boolean; assignLastCellAsCurrent(): void; finishCell(): void; setCharacterInterval(interval: FixedInterval): void; private setParagraphIntervalToParentCell; private setIntervalCore; reset(): void; }