| UndoBufferAcceptChanges Property |
Gets or sets a value indicating whether this
UndoBuffer accepts changes.
Namespace: DigitalRune.UndoAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public bool AcceptChanges { get; set; }
Public Property AcceptChanges As Boolean
Get
Set
public:
property bool AcceptChanges {
bool get ();
void set (bool value);
}
member AcceptChanges : bool with get, set
Property Value
Type:
Boolean if this
UndoBuffer accepts changes; otherwise,
. The default value is
.
Remarks
This property can be used to disable the
UndoBuffer temporarily while undoing
an operation. Any operations added (see
Add(IUndoableOperation)) while this property is
will be ignored and will not be recorded in the undo buffer.
See Also