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!

IMultiWindowService WindowRemoved Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A WindowRemovedEventArgs that contains the event data. The following WindowRemovedEventArgs properties provide information specific to this event.
Property Description
Window
Retrieves the component that is the cause of this event.

See Also

IMultiWindowService Interface | IMultiWindowService MembersTopic | System.WinForms.Design Namespace