Class ExcelSparklineCollection
Collection of sparklines
Inherited Members
Namespace: OfficeOpenXml.Sparkline
Assembly: EPPlus.dll
Syntax
public class ExcelSparklineCollection : IEnumerable<ExcelSparkline>, IEnumerable
Properties
Count
Number of sparklines in the collection
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
this[int]
Returns the sparklinegroup at the specified position.
Declaration
public ExcelSparkline this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The position of the Sparklinegroup. 0-base |
Property Value
| Type | Description |
|---|---|
| ExcelSparkline |
Methods
GetEnumerator()
Gets the enumerator for the collection
Declaration
public IEnumerator<ExcelSparkline> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<ExcelSparkline> | The enumerator |