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

Removes a handler that will be called when a window is being removed from this service.

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

Parameters

handler
The handler to call after the window is removed.

See Also

IMultiWindowService Interface | IMultiWindowService Members | System.WinForms.Design Namespace | AddOnWindowRemove