[Category("GoView")] [Description("An object was removed from this view's selection (a GoSelectionEventHandler)")] public event GoSelectionEventHandler ObjectLostSelection
Event Data
The event handler receives an argument of type GoSelectionEventArgs containing data related to this event. The following GoSelectionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
GoObject | Gets or sets the GoObject associated with this event. |
Remarks
If there is a lot of work to be done in updating various Controls to reflect what is currently selected, you may be able to reduce the frequency of updates for some user actions by implementing SelectionStarting and SelectionFinished event handlers.
All event handlers for this event should not modify the selection.
See Also