A collection of s exposed from a

Inheritance

Implements
  • IEnumerable<Sparkline>
  • IEnumerable

Returns the total number of items in the collection.

public int Count { get; }

Indexer

public Sparkline this[int index] { get; }

Add(int, int, string, CellReferenceMode?)

Section titled "Add(int, int, string, CellReferenceMode?)"

Adds a new with no sparklines

public Sparkline Add(int row, int column, string dataRegion, CellReferenceMode? cellReferenceMode = null)

Parameters

  • row: int
  • column: int
  • dataRegion: string
  • cellReferenceMode: CellReferenceMode?

Returns any

Clears all items from the collection

public void Clear()

Returns any

Returns true if the collection contains the item

public bool Contains(Sparkline sparkline)

Parameters

  • sparkline: Sparkline

Returns any

Returns an enumerator for the sparklines in the collection.

public IEnumerator<Sparkline> GetEnumerator()

Returns any

Gets the index of the item in the collection

public int IndexOf(Sparkline sparkline)

Parameters

  • sparkline: Sparkline

Returns any

Removes a sparkline from the collection

public bool Remove(Sparkline sparkline)

Parameters

  • sparkline: Sparkline

Returns any

Removes a sparkline from the collection

public void RemoveAt(int index)

Parameters

  • index: int

Returns any