SlicerCollection.Item

SlicerCollection indexer (1 of 2)

Gets the Slicer by index.

public Slicer this[int index] { get; }

Examples


[C#]

Slicer slicerByIndex = slicers[0];

See Also


SlicerCollection indexer (2 of 2)

Gets the Slicer by slicer’s name.

public Slicer this[string name] { get; }

Examples


[C#]

Slicer slicerByName = slicers["fruit"];

See Also