Show / Hide Table of Contents

Class PivotTableCollection

Represents a collection of pivot table on a worksheet.

Inheritance
System.Object
PivotTableCollection
Namespace: DRIT.Spreadsheet.Pivot
Assembly: DRIT.Spreadsheet.dll
Syntax
public class PivotTableCollection : IEnumerable<PivotTable>

Properties

Count

Gets the count of pivot tables.

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Item[Int32]

Declaration
public PivotTable this[int index] { get; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
PivotTable

Item[String]

Declaration
public PivotTable this[string name] { get; }
Parameters
Type Name Description
System.String name
Property Value
Type Description
PivotTable

Methods

GetEnumerator()

Declaration
public IEnumerator<PivotTable> GetEnumerator()
Returns
Type Description
IEnumerator<PivotTable>
Back to top Generated by DocFX