ChartEvents_MouseUpEventHandler delegate
Office 2013 and later
A Delegate type used to add an event handler for the MouseUp event. The MouseUp event occurs when a mouse button is released while the pointer is over a chart.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Parameters
- Button
- Type: System.Int32
The mouse button that was released. Can be one of the following XlMouseButton constants: xlNoButton, xlPrimaryButton, xlSecondaryButton, or xlMiddleButton.
- Shift
- Type: System.Int32
The state of the SHIFT, CTRL, and ALT keys when the event occurred. Can be one of or a sum of the following values.
Value
Meaning
0 (zero)
No keys
1
SHIFT key
2
CTRL key
4
ALT key
- x
- Type: System.Int32
The X coordinate of the mouse pointer in chart object client coordinates.
- y
- Type: System.Int32
The Y coordinate of the mouse pointer in chart object client coordinates.
Show: