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.AddOnRedo

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

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

Parameters

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

See Also

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