[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISlicerCaches

Interface ISlicerCaches

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

Represents the collection of slicer caches associated with the specified workbook.

public interface ISlicerCaches : IEnumerable
Inherited Members
System.Collections.IEnumerable.GetEnumerator()

Properties

Count

Gets the number of objects in the collection.

int Count { get; }

Property Value

int

this[int]

Gets the ISlicerCache with the specified index.

ISlicerCache this[int index] { get; }

Parameters

index int

the index.

Property Value

ISlicerCache

this[string]

Gets the ISlicerCache with the specified name.

ISlicerCache this[string name] { get; }

Parameters

name string

the name.

Property Value

ISlicerCache

Methods

Add(object, string, string)

Adds a new ISlicerCache object to the collection.

ISlicerCache Add(object source, string sourceField, string name = null)

Parameters

source object

The data source that the new ISlicerCache will be based on.

sourceField string

The name of the field in the data source to filter by.

name string

The name uses to reference the slicer cache (the value of the ISlicerCache.Name property).

Returns

ISlicerCache

Returns ISlicerCache.