NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IUndoService.AddOnUndo

Adds a handler to be invoked when an action is undone.

[Visual Basic]
Sub AddOnUndo( _
   ByVal handler As ActionUnitEventHandler _
)
[C#]
void AddOnUndo(
   ActionUnitEventHandler handler
);
[C++]
void AddOnUndo(
   ActionUnitEventHandler* handler
) = 0;
[JScript]
function AddOnUndo(
   handler : ActionUnitEventHandler
);

Parameters

handler
The handler to be invoked when an action is undone, of the signature SomeUndoHandlerName(Objects, ActionUnitEventArgs event).

See Also

IUndoService Interface | IUndoService Members | System.ComponentModel.Design Namespace