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

[To be supplied.]

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

[Visual Basic]
Private Sub IUndoServiceName_Undo( _
   ByVal sender As Object, _
   ByVal e As ActionUnitEventArgs _
)
[C#]
private void IUndoServiceName_Undo(
   object sender,
   ActionUnitEventArgs e
);
[C++]
private: void IUndoServiceName_Undo(
   Object* sender,
   ActionUnitEventArgs* e
);
[JScript]
private IUndoServiceName_Undo(
   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