GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / BackgroundSelectionDropReject Event
In This Topic
    BackgroundSelectionDropReject Event
    In This Topic
    The event that is raised during a drag's mouse move over the background; setting the GoInputEventArgs.InputState property to GoInputState.GoInputState.Cancel will reject a drop of the selection at this input event point.
    Syntax
    [Category("GoView")]
    [Description("The view's Selection has been dragged over the background (a GoInputEventHandler); to reject a drop, set .InputState to Cancel")]
    public event GoInputEventHandler BackgroundSelectionDropReject
    Event Data

    The event handler receives an argument of type GoInputEventArgs containing data related to this event. The following GoInputEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets whether Modifiers has Keys.Alt set.  
    Gets or sets the MouseButtons used with this input event.  
    Gets whether Modifiers has Keys.Control set.  
    Gets or sets the amount of change associated with a mouse-wheel rotation.  
    Gets or sets the point at which this input event occurred.  
    Gets or sets whether this is a double-click event.  
    Gets or sets the DragEventArgs associated with this input event.  
    Gets or sets the GoInputState as defined by various tools.  
    Gets whether Buttons equals MouseButtons.Right.  
    Gets or sets the key pressed as this input event.  
    Gets or sets the KeyEventArgs associated with this input event.  
    Gets or sets the modifier keys used with this input event.  
    Gets or sets the MouseEventArgs associated with this input event.  
    Gets whether Modifiers has Keys.Shift set.  
    Gets or sets the point at which this input event occurred.  
    See Also