Version

SeriesMouseDown Event

Event raised when the mouse button is depressed over the series mesh.
Syntax
'Declaration
 
Public Event SeriesMouseDown As EventHandler(Of Chart3DMouseButtonEventArgs)
public event EventHandler<Chart3DMouseButtonEventArgs> SeriesMouseDown
Event Data

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

PropertyDescription
ButtonState (Inherited from System.Windows.Input.MouseButtonEventArgs)Gets the state of the button associated with the event.
ChangedButton (Inherited from System.Windows.Input.MouseButtonEventArgs)Gets the button associated with the event.
ClickCount (Inherited from System.Windows.Input.MouseButtonEventArgs)Gets the number of times the button was clicked.
Device (Inherited from System.Windows.Input.InputEventArgs)Gets the input device that initiated this event.
Handled (Inherited from System.Windows.RoutedEventArgs)Gets or sets a value that indicates the present state of the event handling for a routed event as it travels the route.
Item Gets the data item in context.
LeftButton (Inherited from System.Windows.Input.MouseEventArgs)Gets the current state of the left mouse button.
MiddleButton (Inherited from System.Windows.Input.MouseEventArgs)Gets the current state of the middle mouse button.
MouseDevice (Inherited from System.Windows.Input.MouseEventArgs)Gets the mouse device associated with this event.
OriginalSource (Inherited from System.Windows.RoutedEventArgs)Gets the original reporting source as determined by pure hit testing, before any possible System.Windows.RoutedEventArgs.Source adjustment by a parent class.
RightButton (Inherited from System.Windows.Input.MouseEventArgs)Gets the current state of the right mouse button.
RoutedEvent (Inherited from System.Windows.RoutedEventArgs)Gets or sets the System.Windows.RoutedEventArgs.RoutedEvent associated with this System.Windows.RoutedEventArgs instance.
Source (Inherited from System.Windows.RoutedEventArgs)Gets or sets a reference to the object that raised the event.
StylusDevice (Inherited from System.Windows.Input.MouseEventArgs)Gets the stylus device associated with this event.
Timestamp (Inherited from System.Windows.Input.InputEventArgs)Gets the time when this event occurred.
Value Gets the Value or Z-coordinate of the point in context.
X Gets the X-coordinate of the point in context.
XButton1 (Inherited from System.Windows.Input.MouseEventArgs)Gets the current state of the first extended mouse button.
XButton2 (Inherited from System.Windows.Input.MouseEventArgs)Gets the state of the second extended mouse button.
Y Gets the Y-coordinate of the point in context.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also