devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 783 B
TypeScript
import { HistoryItemIntervalState } from '../../../history/states/history-item-state';
import { HistoryItemIntervalStyleStateObject } from '../../../history/states/history-item-state-object';
import { ParagraphStyle } from '../../../paragraph/paragraph-style';
import { SubDocumentChangeBase } from '../../change-base';
import { ModelChangeType } from '../../enums';
export declare class ParagraphStyleAppliedSubDocumentChange implements SubDocumentChangeBase {
subDocumentId: number;
newState: HistoryItemIntervalState<HistoryItemIntervalStyleStateObject<ParagraphStyle>>;
readonly type = ModelChangeType.ParagraphStyleApplied;
constructor(subDocumentId: number, newState: HistoryItemIntervalState<HistoryItemIntervalStyleStateObject<ParagraphStyle>>);
}