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

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

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

Parameters

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

See Also

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