GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / OnSelectionDropped Method
a GoObjectEventArgs whose GoObjectEventArgs.GoObjectEventArgs.GoObject property refers to the object at which the mouse dropped the selection
In This Topic
    OnSelectionDropped Method
    In This Topic
    Called after the user has dropped the selection on this object.
    Syntax
    public virtual bool OnSelectionDropped( 
       GoObjectEventArgs evt,
       GoView view
    )

    Parameters

    evt
    a GoObjectEventArgs whose GoObjectEventArgs.GoObjectEventArgs.GoObject property refers to the object at which the mouse dropped the selection
    view

    Return Value

    True to indicate this object handled the event and thus that the calling view need not continue calling the method up the chain of parent objects.
    Remarks
    By default this does nothing but return false. This method is normally invoked by the GoToolDragging tool, through the GoView.GoView.DoSelectionDropped method. One cannot cancel a drop at this time -- it has already happened.
    See Also