ComponentOne FinancialChart for WPF
C1.WPF.Chart Namespace / C1TreeMap Class / OnMouseDown Method
The System.Windows.Input.MouseButtonEventArgs that contains the event data. This event data reports details about the mouse button that was pressed and the handled state.



In This Topic
    OnMouseDown Method (C1TreeMap)
    In This Topic
    Invoked when an unhandled System.Windows.Input.Mouse.MouseDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
    Syntax
    'Declaration
     
    
    Protected Overrides Sub OnMouseDown( _
       ByVal e As MouseButtonEventArgs _
    ) 
    'Usage
     
    
    Dim instance As C1TreeMap
    Dim e As MouseButtonEventArgs
     
    instance.OnMouseDown(e)
    protected override void OnMouseDown( 
       MouseButtonEventArgs e
    )
    protected:
    void OnMouseDown( 
       MouseButtonEventArgs^ e
    ) override 

    Parameters

    e
    The System.Windows.Input.MouseButtonEventArgs that contains the event data. This event data reports details about the mouse button that was pressed and the handled state.
    See Also