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

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
An UIActivationStateEventArgs that contains the event data. The following UIActivationStateEventArgs properties provide information specific to this event.
Property Description
Component
The component whose UI activation state is changing.

See Also

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