UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 657 B
import { HistoryItem } from '../base/history-item'; export class DocumentProtectionHistoryItem extends HistoryItem { constructor(modelManipulator, newProtectionProperties) { super(modelManipulator); this.newProtectionProperties = newProtectionProperties; } redo() { this.oldProtectionProperties = this.modelManipulator.documentProtectionProperties.changeProtectionProperties(this.modelManipulator.model, this.newProtectionProperties); } undo() { this.modelManipulator.documentProtectionProperties.changeProtectionProperties(this.modelManipulator.model, this.oldProtectionProperties); } }