Add
内容
[
隐藏
]Add(PivotTable, string, string)
使用数据透视表作为数据源添加一个新的切片器
public int Add(PivotTable pivot, string destCellName, string baseFieldName)
范围 | 类型 | 描述 |
---|---|---|
pivot | PivotTable | 数据透视表对象 |
destCellName | String | 切片器范围左上角的单元格。 |
baseFieldName | String | PivotTable.BaseFields 中 PivotField 的名称 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(pivot, "E3", "fruit");
也可以看看
- class PivotTable
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(PivotTable, int, int, string)
使用数据透视表作为数据源添加一个新的切片器
public int Add(PivotTable pivot, int row, int column, string baseFieldName)
范围 | 类型 | 描述 |
---|---|---|
pivot | PivotTable | 数据透视表对象 |
row | Int32 | 切片器范围左上角单元格的行索引。 |
column | Int32 | 切片器范围左上角的单元格的列索引。 |
baseFieldName | String | PivotTable.BaseFields 中 PivotField 的名称 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(pivot, 20, 12, "fruit");
也可以看看
- class PivotTable
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(PivotTable, int, int, int)
使用数据透视表作为数据源添加一个新的切片器
public int Add(PivotTable pivot, int row, int column, int baseFieldIndex)
范围 | 类型 | 描述 |
---|---|---|
pivot | PivotTable | 数据透视表对象 |
row | Int32 | 切片器范围左上角单元格的行索引。 |
column | Int32 | 切片器范围左上角的单元格的列索引。 |
baseFieldIndex | Int32 | PivotTable.BaseFields 中 PivotField 的索引 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(pivot, 20, 8, 0);
也可以看看
- class PivotTable
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(PivotTable, string, int)
使用数据透视表作为数据源添加一个新的切片器
public int Add(PivotTable pivot, string destCellName, int baseFieldIndex)
范围 | 类型 | 描述 |
---|---|---|
pivot | PivotTable | 数据透视表对象 |
destCellName | String | 切片器范围左上角的单元格。 |
baseFieldIndex | Int32 | PivotTable.BaseFields 中 PivotField 的索引 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(pivot, "E20", 0);
也可以看看
- class PivotTable
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(PivotTable, int, int, PivotField)
使用数据透视表作为数据源添加一个新的切片器
public int Add(PivotTable pivot, int row, int column, PivotField baseField)
范围 | 类型 | 描述 |
---|---|---|
pivot | PivotTable | 数据透视表对象 |
row | Int32 | 切片器范围左上角单元格的行索引。 |
column | Int32 | 切片器范围左上角的单元格的列索引。 |
baseField | PivotField | PivotTable.BaseFields 中的 PivotField |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(pivot, 3, 12, pivot.BaseFields[0]);
也可以看看
- class PivotTable
- class PivotField
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(PivotTable, string, PivotField)
使用数据透视表作为数据源添加一个新的切片器
public int Add(PivotTable pivot, string destCellName, PivotField baseField)
范围 | 类型 | 描述 |
---|---|---|
pivot | PivotTable | 数据透视表对象 |
destCellName | String | 切片器范围左上角的单元格。 |
baseField | PivotField | PivotTable.BaseFields 中的 PivotField |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(pivot, "I3", pivot.BaseFields[0]);
也可以看看
- class PivotTable
- class PivotField
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(ListObject, int, string)
使用 ListObjet 作为数据源添加一个新的切片器
public int Add(ListObject table, int index, string destCellName)
范围 | 类型 | 描述 |
---|---|---|
table | ListObject | ListObject 对象 |
index | Int32 | ListObject.ListColumns 中 ListColumn 的索引 |
destCellName | String | 切片器范围左上角的单元格。 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(table, 1, "E38");
也可以看看
- class ListObject
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(ListObject, ListColumn, string)
使用 ListObjet 作为数据源添加一个新的切片器
public int Add(ListObject table, ListColumn listColumn, string destCellName)
范围 | 类型 | 描述 |
---|---|---|
table | ListObject | ListObject 对象 |
listColumn | ListColumn | ListObject.ListColumns 中的 ListColumn |
destCellName | String | 切片器范围左上角的单元格。 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(table, table.ListColumns[1], "I38");
也可以看看
- class ListObject
- class ListColumn
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells
Add(ListObject, ListColumn, int, int)
使用 ListObjet 作为数据源添加一个新的切片器
public int Add(ListObject table, ListColumn listColumn, int row, int column)
范围 | 类型 | 描述 |
---|---|---|
table | ListObject | ListObject 对象 |
listColumn | ListColumn | ListObject.ListColumns 中的 ListColumn |
row | Int32 | 切片器范围左上角单元格的行索引。 |
column | Int32 | 切片器范围左上角的单元格的列索引。 |
返回值
新添加切片器索引
例子
[C#]
slicers.Add(table, table.ListColumns[1], 38, 12);
也可以看看
- class ListObject
- class ListColumn
- class SlicerCollection
- 命名空间 Aspose.Cells.Slicers
- 部件 Aspose.Cells