WorkbookEvents_SheetPivotTableBeforeCommitChangesEventHandler 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 delegado usado para adicionar um manipulador de eventos para o SheetPivotTableBeforeCommitChanges evento. O evento SheetPivotTableBeforeCommitChanges ocorre antes que as alterações sejam confirmadas na fonte de dados OLAP para uma Tabela Dinâmica.
public delegate void WorkbookEvents_SheetPivotTableBeforeCommitChangesEventHandler(System::Object ^ Sh, PivotTable ^ TargetPivotTable, int ValueChangeStart, int ValueChangeEnd, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void WorkbookEvents_SheetPivotTableBeforeCommitChangesEventHandler(object Sh, PivotTable TargetPivotTable, int ValueChangeStart, int ValueChangeEnd, out bool Cancel);
Public Delegate Sub WorkbookEvents_SheetPivotTableBeforeCommitChangesEventHandler(Sh As Object, TargetPivotTable As PivotTable, ValueChangeStart As Integer, ValueChangeEnd As Integer, ByRef Cancel As Boolean)
Parâmetros
- Sh
- Object
A planilha que contém a Tabela Dinâmica.
- TargetPivotTable
- PivotTable
A Tabela Dinâmica que contém as alterações a serem confirmadas.
- ValueChangeStart
- Int32
O índice para a primeira alteração no objeto associado PivotTableChangeList . O índice é especificado pela Order propriedade do ValueChange objeto na PivotTableChangeList coleção.
- ValueChangeEnd
- Int32
O índice para a última alteração no objeto associado PivotTableChangeList . O índice é especificado pela Order propriedade do ValueChange objeto na PivotTableChangeList coleção.
- Cancel
- Boolean
false quando o evento ocorre. Se o procedimento de evento definir esse argumento como true, as alterações não serão confirmadas em relação à fonte de dados OLAP da Tabela Dinâmica.
- Atributos