Add

Add(string, string, string)

将新的数据透视表缓存添加到 PivotCaches 集合中。

public int Add(string sourceData, string destCellName, string tableName)
范围类型描述
sourceDataString新数据透视表缓存的数据。
destCellNameString数据透视表目标区域左上角的单元格。
tableNameString新数据透视表的名称。

返回值

新添加的缓存索引。

也可以看看


Add(string, string, string, bool)

将新的数据透视表缓存添加到 PivotCaches 集合中。

public int Add(string sourceData, string destCellName, string tableName, bool useSameSource)
范围类型描述
sourceDataString新数据透视表缓存的数据。
destCellNameString数据透视表目标区域左上角的单元格。
tableNameString新数据透视表的名称。
useSameSourceBoolean指示当另一个现有数据透视表已使用此数据源时是否使用相同的数据源。 如果该属性为 true,它将节省内存。

返回值

新添加的缓存索引。

也可以看看


Add(string, int, int, string)

将新的数据透视表缓存添加到 PivotCaches 集合中。

public int Add(string sourceData, int row, int column, string tableName)
范围类型描述
sourceDataString新 PivotTable.Example 的数据单元格范围:Sheet1!A1:C8
rowInt32数据透视表目标区域左上角单元格的行索引。
columnInt32数据透视表目标区域左上角单元格的列索引。
tableNameString新数据透视表的名称。

返回值

新添加的缓存索引。

也可以看看


Add(string, int, int, string, bool)

将新的数据透视表缓存添加到 PivotCaches 集合中。

public int Add(string sourceData, int row, int column, string tableName, bool useSameSource)
范围类型描述
sourceDataString新 PivotTable.Example 的数据单元格范围:Sheet1!A1:C8
rowInt32数据透视表目标区域左上角单元格的行索引。
columnInt32数据透视表目标区域左上角单元格的列索引。
tableNameString新数据透视表的名称。
useSameSourceBoolean指示当另一个现有数据透视表已使用此数据源时是否使用相同的数据源。 如果该属性为 true,它将节省内存。

返回值

新添加的缓存索引。

也可以看看


Add(PivotTable, string, string)

将新的数据透视表对象从另一个数据透视表添加到集合中。

public int Add(PivotTable pivotTable, string destCellName, string tableName)
范围类型描述
pivotTablePivotTable源数据透视表。
destCellNameString数据透视表目标区域左上角的单元格。
tableNameString新数据透视表的名称。

返回值

新添加的数据透视表索引。

也可以看看


Add(PivotTable, int, int, string)

将新的数据透视表对象从另一个数据透视表添加到集合中。

public int Add(PivotTable pivotTable, int row, int column, string tableName)
范围类型描述
pivotTablePivotTable源数据透视表。
rowInt32数据透视表目标区域左上角单元格的行索引。
columnInt32数据透视表目标区域左上角单元格的列索引。
tableNameString新数据透视表的名称。

返回值

新添加的数据透视表索引。

也可以看看


Add(string[], bool, PivotPageFields, string, string)

将一个新的数据透视表对象添加到具有多个合并范围作为数据源的集合中。

public int Add(string[] sourceData, bool isAutoPage, PivotPageFields pageFields, 
    string destCellName, string tableName)
范围类型描述
sourceDataString[]多个合并范围,例如 {“Sheet1!A1:C8”,“Sheet2!A1:B8”}
isAutoPageBoolean是否自动创建单页字段。 如果为true,以下参数pageFields将被忽略。
pageFieldsPivotPageFields数据透视页面字段 items.
destCellNameStringdestCellName 新数据透视表的名称。
tableNameString新数据透视表的名称。

返回值

新添加的数据透视表索引。

也可以看看


Add(string[], bool, PivotPageFields, int, int, string)

将一个新的数据透视表对象添加到具有多个合并范围作为数据源的集合中。

public int Add(string[] sourceData, bool isAutoPage, PivotPageFields pageFields, int row, 
    int column, string tableName)
范围类型描述
sourceDataString[]多个合并范围,例如 {“Sheet1!A1:C8”,“Sheet2!A1:B8”}
isAutoPageBoolean是否自动创建单页字段。 如果为true,以下参数pageFields将被忽略
pageFieldsPivotPageFields数据透视页面字段 items.
rowInt32数据透视表目标区域左上角单元格的行索引。
columnInt32数据透视表目标区域左上角单元格的列索引。
tableNameString新数据透视表的名称。

返回值

新添加的数据透视表索引。

也可以看看