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

Requests that a designer be placed into UI active design mode. A designer can be placed into UI active mode only if the associated component is the only item selected. This method should be called by the designer.

[Visual Basic]
Function RequestUIActivate( _
   ByVal component As IComponent _
) As Boolean
[C#]
bool RequestUIActivate(
   IComponent component
);
[C++]
bool RequestUIActivate(
   IComponent* component
) = 0;
[JScript]
function RequestUIActivate(
   component : IComponent
) : Boolean;

Parameters

component
The component to UI activate.

Return Value

true if the activation was successful, otherwise false.

See Also

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