GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / SelectionFinished Event
In This Topic
    SelectionFinished Event
    In This Topic
    The event that is raised after a number of objects are selected or de-selected.
    Syntax
    [Category("GoView")]
    [Description("Raised after a number of objects are selected or de-selected.")]
    public event EventHandler SelectionFinished
    Remarks

    This is paired with the SelectionStarting event in order to permit optimizations to skip updating other controls that depend on what is currently selected. You still need to implement ObjectGotSelection and ObjectLostSelection event handlers in order to detect the selection or de-selection of individual objects. Methods such as SelectAll, SelectInRectangle, CopySelection, DeleteSelection, and EditPaste will raise this event after (and the SelectionStarting event before) making changes to the Selection.

    These two events are not raised when individual objects are added or removed from the Selection, such as when the user clicks on an object.

    All event handlers for this event should not modify the selection.

    See Also