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!

IDesignerEventService.AddOnSelectionChanged

Adds an event that will be fired when the global selection changes.

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

Parameters

handler
The event handler to add.

Remarks

A global selection change may result from the user changing the selection in the currently active document, or from the user switching to a new document.

See Also

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