GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / ObjectGotSelection Event
In This Topic
    ObjectGotSelection Event
    In This Topic
    The event that is raised when an object gets added to this view's selection.
    Syntax
    [Category("GoView")]
    [Description("An object got added to this view's selection (a GoSelectionEventHandler)")]
    public event GoSelectionEventHandler ObjectGotSelection
    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