GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / ObjectLostSelection Event
In This Topic
    ObjectLostSelection Event
    In This Topic
    The event that is raised when an object is removed from this view's selection.
    Syntax
    [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.

    PropertyDescription
    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