A collection of for a
Inheritance
object
- IEnumerable<Series>
- IEnumerable
Properties
Section titled "Properties"Chart
Section titled "Chart"Inherited from: ChartObject
Returns the owning chart (read-only)
public WorksheetChart Chart { get; } Owner
Section titled "Owner"Inherited from: ChartObject
returns this object's owner. (read-only)
public ChartObject Owner { get; } Sheet
Section titled "Sheet"Inherited from: ChartObject
The owning sheet (read-only)
public Sheet Sheet { get; } Workbook
Section titled "Workbook"Inherited from: ChartObject
The owning workbook (read-only)
public Workbook Workbook { get; } Worksheet
Section titled "Worksheet"Inherited from: ChartObject
The owning worksheet (read-only)
public Worksheet Worksheet { get; } Count
Section titled "Count"Returns the number of items in the collection (read-only)
public int Count { get; } IsReadOnly
Section titled "IsReadOnly"Determines if the collecion can be modified (read-only)
public bool IsReadOnly { get; } this[int]
Section titled "this[int]"Indexer
public Series this[int index] { get; } Methods
Section titled "Methods"Add()
Section titled "Add()"Adds a new series to the collection
public Series Add() Returns any
Clear()
Section titled "Clear()"Clears the collection.
public void Clear() Returns any
Contains(Series)
Section titled "Contains(Series)"Determines if the collection contains thhe item
public bool Contains(Series item) Parameters
- item:
Series
Returns any
GetEnumerator()
Section titled "GetEnumerator()"Gets an enumerator for the items in the collection
public IEnumerator<Series> GetEnumerator() Returns any
IndexOf(Series)
Section titled "IndexOf(Series)"Returns the index of the item in the collection
public int IndexOf(Series item) Parameters
- item:
Series
Returns any
Insert(int)
Section titled "Insert(int)"Inserts a new into the collection at the specified index.
public Series Insert(int index) Parameters
- index:
int
Returns any
Remove(Series)
Section titled "Remove(Series)"Removes an item from the collection.
public bool Remove(Series item) Parameters
- item:
Series
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the series at the specified index
public void RemoveAt(int index) Parameters
- index:
int