Class FullSeriesCollection (Word 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 = ActiveDocument.Background.Chart.FullSeriesCollection()

For Each

Here is an example of processing the FullSeriesCollection items in a collection.


Dim srsFullSeriesCollection As Series
For Each srsFullSeriesCollection In ActiveDocument.Background.Chart.FullSeriesCollection()
	
Next srsFullSeriesCollection

Count

Returns a Long that represents the number of full series in the collection.


Dim lngCount As Long
lngCount = ActiveDocument.Background.Chart.FullSeriesCollection.Count

Item

Returns an individual full series item from the collection.

Item (Index)

Index: The name or index number of the item to return.


Dim srsFullSeriesCollection As Series
Set srsFullSeriesCollection = ActiveDocument.Background.Chart.FullSeriesCollection(Index:=1)