DocEvents_PivotTableBeforeAllocateChangesEventHandler Delegar
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Um tipo Delegate usado para adicionar um manipulador de eventos para o PivotTableBeforeAllocateChanges evento. O evento PivotTableBeforeAllocateChanges ocorre antes que as alterações sejam aplicadas a uma tabela dinâmica.
public delegate void DocEvents_PivotTableBeforeAllocateChangesEventHandler(PivotTable ^ TargetPivotTable, int ValueChangeStart, int ValueChangeEnd, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void DocEvents_PivotTableBeforeAllocateChangesEventHandler(PivotTable TargetPivotTable, int ValueChangeStart, int ValueChangeEnd, out bool Cancel);
Public Delegate Sub DocEvents_PivotTableBeforeAllocateChangesEventHandler(TargetPivotTable As PivotTable, ValueChangeStart As Integer, ValueChangeEnd As Integer, ByRef Cancel As Boolean)
Parâmetros
- TargetPivotTable
- PivotTable
A Tabela Dinâmica que contém as alterações a serem aplicadas.
- ValueChangeStart
- Int32
O índice para a primeira alteração na coleção PivotTableChangeList associada. O índice é especificado pela Order propriedade do objeto na ValueChange PivotTableChangeList coleção.
- ValueChangeEnd
- Int32
O índice para a última alteração na coleção PivotTableChangeList associada. O índice é especificado pela Order propriedade do objeto na ValueChange PivotTableChangeList coleção.
- Cancel
- Boolean
false quando o evento ocorre. Se o procedimento de evento define esse parâmetro como true, as alterações não são aplicadas à Tabela Dinâmica e todas as edições são perdidas.
- Atributos