ComponentOne BulletGraph for WinForms
C1.Win.C1Gauge Namespace / C1Gauge Class / ItemMouseMove Event

In This Topic
    ItemMouseMove Event (C1Gauge)
    In This Topic
    Occurs when the mouse pointer is moved over a Gauge item.
    Syntax
    'Declaration
     
    Public Event ItemMouseMove As ItemMouseEventHandler
    public event ItemMouseEventHandler ItemMouseMove
    Event Data

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

    PropertyDescription
    Gets which mouse button was pressed.  
    Gets the number of times the mouse button was pressed or released.  
    Gets the owner C1Gauge control. (Inherited from C1.Win.C1Gauge.ItemEventArgs)
    Gets the owner C1GaugeBase for the item causing the event. (Inherited from C1.Win.C1Gauge.ItemEventArgs)
    Gets the item causing the event. (Inherited from C1.Win.C1Gauge.ItemEventArgs)
    Indicates whether the item can be hit-tested. (Inherited from C1.Win.C1Gauge.ItemEventArgs)
    Indicates whether the mouse pointer stays over the item. (Inherited from C1.Win.C1Gauge.ItemEventArgs)
    Indicates whether the item is in 'pressed' state. (Inherited from C1.Win.C1Gauge.ItemEventArgs)
    Gets the location of the mouse during the generating mouse event.  
    Gets the x-coordinate of the mouse, in pixels.  
    Gets the y-coordinate of the mouse, in pixels.  
    See Also