GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / BackgroundSingleClicked Event
In This Topic
    BackgroundSingleClicked Event
    In This Topic
    The user performed a single click on the background, not over any document object.
    Syntax
    [Category("GoView")]
    [Description("The user performed a single click on the background, not over any document object (a GoInputEventHandler)")]
    public event GoInputEventHandler BackgroundSingleClicked
    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.  
    Remarks
    The location of the click is given by the GoInputEventArgs.GoInputEventArgs.DocPoint property.
    See Also