devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 1.04 kB
TypeScript
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
import { ParagraphListInfo } from '../../../../rich-utils/properties-bundle';
import { MaskedParagraphProperties } from '../../../paragraph/paragraph-properties';
import { ParagraphStyle, TabProperties } from '../../../paragraph/paragraph-style';
import { SubDocumentChangeBase } from '../../change-base';
import { ModelChangeType } from '../../enums';
export declare class ParagraphPropertiesChangedSubDocumentChange implements SubDocumentChangeBase {
subDocumentId: number;
paragraphIndex: number;
paragraphInterval: FixedInterval;
properties: MaskedParagraphProperties;
style: ParagraphStyle;
tabs: TabProperties;
listInfo: ParagraphListInfo;
readonly type = ModelChangeType.ParagraphPropertiesChanged;
constructor(subDocumentId: number, paragraphIndex: number, paragraphInterval: FixedInterval, properties: MaskedParagraphProperties, style: ParagraphStyle, tabs: TabProperties, listInfo: ParagraphListInfo);
}