Begins grouping up editing actions into a single UNDO action.

Namespace: Sgry.Azuki
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public void BeginUndo()
Visual Basic
Public Sub BeginUndo

Remarks

Call of this method creates a new group of actions in UNDO history and collect modification to this document until call of EndUndo method.

If no actions has been executed between call of BeginUndo and EndUndo, an UNDO action which do nothing will be stored in UNDO history. After call of this method, this method does nothing until EndUndo method was called so calling this method multiple times in a row happens nothing.

See Also