ChartEvents_SeriesChangeEventHandler Delegate
A Delegate type used to add an event handler for the SeriesChange event. The SeriesChange event occurs when the user changes the value of a chart data point.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub ChartEvents_SeriesChangeEventHandler ( _
SeriesIndex As Integer, _
PointIndex As Integer _
)
'Usage
Dim instance As New ChartEvents_SeriesChangeEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void ChartEvents_SeriesChangeEventHandler(
int SeriesIndex,
int PointIndex
)
Parameters
SeriesIndex
Type: System.Int32The offset within the Series collection for the changed series.
PointIndex
Type: System.Int32The offset within the Points collection for the changed point.