A collection of objects belonging to the same .
Inheritance
object
- IEnumerable<Trendline>
- 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]"Returns the instance at the specified ordinal position within the collection.
public Trendline this[int index] { get; } Methods
Section titled "Methods"Add()
Section titled "Add()"Adds a new to the collection
public Trendline Add() Returns any
Clear()
Section titled "Clear()"Clears the collection.
public void Clear() Returns any
Contains(Trendline)
Section titled "Contains(Trendline)"Returns a boolean value indicating whether the specified instance is contained within this collection.
public bool Contains(Trendline item) Parameters
- item:
Trendline
Returns any
GetEnumerator()
Section titled "GetEnumerator()"Gets an enumerator for the items in the collection
public IEnumerator<Trendline> GetEnumerator() Returns any
IndexOf(Trendline)
Section titled "IndexOf(Trendline)"Returns the index of the item in the collection.
public int IndexOf(Trendline item) Parameters
- item:
Trendline
Returns any
Insert(int)
Section titled "Insert(int)"Inserts a new into the collection at the specified index.
public Trendline Insert(int index) Parameters
- index:
int
Returns any
Remove(Trendline)
Section titled "Remove(Trendline)"Removes an item from the collection.
public bool Remove(Trendline item) Parameters
- item:
Trendline
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the series at the specified index
public void RemoveAt(int index) Parameters
- index:
int