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 Redo Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the Redo event.

[Visual Basic]
Private Sub IUndoServiceName_Redo( _
   ByVal sender As Object, _
   ByVal e As ActionUnitEventArgs _
)
[C#]
private void IUndoServiceName_Redo(
   object sender,
   ActionUnitEventArgs e
);
[C++]
private: void IUndoServiceName_Redo(
   Object* sender,
   ActionUnitEventArgs* e
);
[JScript]
private IUndoServiceName_Redo(
   sender : Object,
   e : ActionUnitEventArgs
);

Parameters

sender
The source of the event.
e
An ActionUnitEventArgs that contains the event data.

See Also

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