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!

ISelectionUIService.AddOnContainerSelectorActive

Adds an event handler to the ContainerSelectorActive event. This event is fired whenever the user interacts with the container selector in a manor that would indicate that the selector should continued to be displayed. Since the container selector normally will vanish after a timeout, designers should listen to this event and reset the timeout when this event occurs.

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

Parameters

handler
Handler to notify

See Also

ISelectionUIService Interface | ISelectionUIService Members | System.WinForms.Design Namespace