devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 867 B
TypeScript
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
import { TextBoxProperties } from '../../floating-objects/text-box-properties';
import { HistoryItemIntervalState } from '../../history/states/history-item-state';
import { HistoryItemIntervalAnchoredTextBoxPropertiesStateObject } from '../../history/states/history-item-state-object';
import { SubDocument } from '../../sub-document';
import { BaseManipulator } from '../base-manipulator';
export declare class TextBoxPropertiesManipulator extends BaseManipulator {
setValue(subDocument: SubDocument, interval: FixedInterval, newValue: TextBoxProperties): HistoryItemIntervalState<HistoryItemIntervalAnchoredTextBoxPropertiesStateObject>;
restoreValue(subDocument: SubDocument, state: HistoryItemIntervalState<HistoryItemIntervalAnchoredTextBoxPropertiesStateObject>): void;
}