DocEvents_PivotTableBeforeDiscardChangesEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A Delegate type used to add an event handler for the PivotTableBeforeDiscardChanges event. The PivotTableBeforeDiscardChanges event occurs before changes to a PivotTable are discarded.
public delegate void DocEvents_PivotTableBeforeDiscardChangesEventHandler(PivotTable ^ TargetPivotTable, int ValueChangeStart, int ValueChangeEnd);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void DocEvents_PivotTableBeforeDiscardChangesEventHandler(PivotTable TargetPivotTable, int ValueChangeStart, int ValueChangeEnd);
Public Delegate Sub DocEvents_PivotTableBeforeDiscardChangesEventHandler(TargetPivotTable As PivotTable, ValueChangeStart As Integer, ValueChangeEnd As Integer)
Parameters
- TargetPivotTable
- PivotTable
The PivotTable that contains the changes to discard.
- ValueChangeStart
- Int32
The index to the first change in the associated PivotTableChangeList object. The index is specified by the Order property of the ValueChange object in the PivotTableChangeList collection.
- ValueChangeEnd
- Int32
The index to the last change in the associated PivotTableChangeList object. The index is specified by the Order property of the ValueChange object in the PivotTableChangeList collection.
- Attributes