TiEditCustom.Undo

TiEditCustom

Backs out all changes in the undo buffer.

procedure Undo;

Description

Call Undo to cancel all changes made to the Value property since the last call to the ClearUndo method. If ClearUndo was never called, Undo rolls back all changes.

To determine whether there are any changes in the undo buffer, check the CanUndo property.

Example

Delphi

iComponent.Undo;

C++ Builder

iComponent->Undo();

Contents | Index | Previous | Next