[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPivotItems

Interface IPivotItems

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a collection of all the PivotItem objects in a PivotTable field. The items are the individual data entries in a field category.

public interface IPivotItems : IEnumerable<IPivotItem>, IEnumerable
Inherited Members
System.Collections.Generic.IEnumerable<GrapeCity.Documents.Excel.IPivotItem>.GetEnumerator()

Properties

Count

Returns the number of objects in the collection.

int Count { get; }

Property Value

int

this[int]

Returns a single object from a collection.

IPivotItem this[int index] { get; }

Parameters

index int

The index number for the object.

Property Value

IPivotItem

this[string]

Returns a single object from a collection.

IPivotItem this[string name] { get; }

Parameters

name string

The name for the object.

Property Value

IPivotItem