Class FullSeriesCollection (PowerPoint VBA)
The class FullSeriesCollection represents the full collection of all chart series, both filtered and unfiltered. To use a FullSeriesCollection class variable it first needs to be instantiated, for example
Dim fsc as FullSeriesCollection
Set fsc = ActiveWindow.RangeFromPoint.Chart.FullSeriesCollection()
Count
Returns a Long that represents the number of full series in the collection.
Dim lngCount As Long
lngCount = ActiveWindow.RangeFromPoint.Chart.FullSeriesCollection.Count
Item
Returns an individual Series object from the collection.
Item (Index)
Index: The name or index number of the item to return.
Dim srsFullSeriesCollection As Series
Set srsFullSeriesCollection = ActiveWindow.RangeFromPoint.Chart.FullSeriesCollection(Index:=1)