devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 658 B
TypeScript
import { HistoryItem } from '../base/history-item';
import { ModelManipulator } from '../../manipulators/model-manipulator';
import { Selection } from '../../../selection/selection';
import { SelectionState } from '../../../selection/selection-state';
export declare class SelectionHistoryItem extends HistoryItem {
private selection;
oldState: SelectionState;
newState: SelectionState;
private directionFlag;
canBeMerged(): boolean;
constructor(modelManipulator: ModelManipulator, selection: Selection, oldState: SelectionState, newState: SelectionState, directionValue?: number);
redo(): void;
undo(): void;
}