Click or drag to resize
DigitalRuneUndoBufferBeginUndoGroup Method
Begins a new undo group.

Namespace: DigitalRune.Undo
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public void BeginUndoGroup()
Remarks

An undo group is a group of operations that is combined into a single undo operation.

Undo groups can be nested: New undo groups can be started within other undo groups. The number of EndUndoGroup(Object) calls need to match the number of BeginUndoGroup calls. All operations between the outer BeginUndoGroup and EndUndoGroup(Object) are combined and pushed onto the undo stack.

See Also