Property Getters/Setters Summary | ||
---|---|---|
function | getCount() | |
function | get(index) | |
Gets the PivotTable report by index.
|
||
function | get(row, column) | |
Gets the PivotTable report by pivottable's position.
|
||
function | get(name) | |
Gets the PivotTable report by pivottable's name.
|
Method Summary | ||
---|---|---|
function | add(pivotTable, row, column, tableName) | |
Adds a new PivotTable Object to the collection from another PivotTable.
|
||
function | add(pivotTable, destCellName, tableName) | |
Adds a new PivotTable Object to the collection from another PivotTable.
|
||
function | add(value) | |
Reserved for internal use. |
||
function | add(sourceData, row, column, tableName) | |
Adds a new PivotTable cache to a PivotCaches collection.
|
||
function | add(sourceData, row, column, tableName, useSameSource) | |
Adds a new PivotTable cache to a PivotCaches collection.
|
||
function | add(sourceData, destCellName, tableName) | |
Adds a new PivotTable cache to a PivotCaches collection.
|
||
function | add(sourceData, destCellName, tableName, useSameSource) | |
Adds a new PivotTable cache to a PivotCaches collection.
|
||
function | add(sourceData, isAutoPage, pageFields, row, column, tableName) | |
Adds a new PivotTable Object to the collection with multiple consolidation ranges as data source.
|
||
function | add(sourceData, isAutoPage, pageFields, destCellName, tableName) | |
Adds a new PivotTable Object to the collection with multiple consolidation ranges as data source.
|
||
function | clear() | |
Clear all pivot tables.
|
||
function | contains(value) | |
Reserved for internal use. |
||
function | dispose() | |
Performs application-defined tasks associated with freeing, releasing, or
resetting unmanaged resources.
|
||
function | get(index) | |
Reserved for internal use. |
||
function | indexOf(value) | |
Reserved for internal use. |
||
function | iterator() | |
function | remove(pivotTable) | |
Deletes the specified PivotTable and delete the PivotTable data
|
||
function | remove(pivotTable, keepData) | |
Deletes the specified PivotTable
|
||
function | removeAt(index) | |
Deletes the PivotTable at the specified index and delete the PivotTable data
|
||
function | removeAt(index, keepData) | |
Deletes the PivotTable at the specified index
|
function getCount()
function get(index)
function get(name)
function get(row, column)
function dispose()
function add(sourceData, destCellName, tableName)
sourceData: String
- The data for the new PivotTable cache.destCellName: String
- The cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.function add(sourceData, destCellName, tableName, useSameSource)
sourceData: String
- The data for the new PivotTable cache.destCellName: String
- The cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.useSameSource: boolean
- Indicates whether using same data source when another existing pivot table has used this data source.
If the property is true, it will save memory.function add(sourceData, row, column, tableName)
sourceData: String
- The data cell range for the new PivotTable.Example : Sheet1!A1:C8row: Number
- Row index of the cell in the upper-left corner of the PivotTable report's destination range.column: Number
- Column index of the cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.function add(sourceData, row, column, tableName, useSameSource)
sourceData: String
- The data cell range for the new PivotTable.Example : Sheet1!A1:C8row: Number
- Row index of the cell in the upper-left corner of the PivotTable report's destination range.column: Number
- Column index of the cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.useSameSource: boolean
- Indicates whether using same data source when another existing pivot table has used this data source.
If the property is true, it will save memory.function add(pivotTable, destCellName, tableName)
pivotTable: PivotTable
- The source pivotTable.destCellName: String
- The cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.function add(pivotTable, row, column, tableName)
pivotTable: PivotTable
- The source pivotTable.row: Number
- Row index of the cell in the upper-left corner of the PivotTable report's destination range.column: Number
- Column index of the cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.function add(sourceData, isAutoPage, pageFields, destCellName, tableName)
sourceData: String[]
- The multiple consolidation ranges,such as {"Sheet1!A1:C8","Sheet2!A1:B8"}isAutoPage: boolean
- Whether auto create a single page field.
If true,the following param pageFields will be ignored.
pageFields: PivotPageFields
- The pivot page field items.
destCellName: String
- destCellName The name of the new PivotTable report.tableName: String
- the name of the new PivotTable report.function add(sourceData, isAutoPage, pageFields, row, column, tableName)
sourceData: String[]
- The multiple consolidation ranges,such as {"Sheet1!A1:C8","Sheet2!A1:B8"}isAutoPage: boolean
- Whether auto create a single page field.
If true,the following param pageFields will be ignoredpageFields: PivotPageFields
- The pivot page field items.
row: Number
- Row index of the cell in the upper-left corner of the PivotTable report's destination range.column: Number
- Column index of the cell in the upper-left corner of the PivotTable report's destination range.tableName: String
- The name of the new PivotTable report.function clear()
function remove(pivotTable)
pivotTable: PivotTable
- PivotTable objectfunction remove(pivotTable, keepData)
pivotTable: PivotTable
- PivotTable objectkeepData: boolean
- Whether to keep the PivotTable datafunction removeAt(index)
index: Number
- the position index in PivotTable collectionfunction removeAt(index, keepData)
index: Number
- the position index in PivotTable collectionkeepData: boolean
- Whether to keep the PivotTable datafunction iterator()
function get(index)
function contains(value)
function add(value)
function indexOf(value)