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!

IUIActivationService.RemoveOnUIDeactivated

Removes a Delegate that will be invoked when a component has been moved out of UI active state. On invocation, the UIActivationStateEventArgs.component variable holds a reference to the component that has been transitioned.

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

Parameters

handler
A UIActivationStateEventHandler to be invoked when a component is transitioned from UI active mode.

See Also

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