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

[To be supplied.]

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

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