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!

ISelectionService.RemoveOnSelectionChanged

Removes a selection changed event handler from the selection service.

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

Parameters

handler
An EventHandler that is to be removed from the selection changed event.

Remarks

A selection changed event will fire every time the user changes the current list of selected components.

See Also

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