Class ExcelSparklineCollection
Collection of sparklines
Inheritance
System.Object
ExcelSparklineCollection
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
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 |
---|---|
System. |
Item[Int32]
Returns the sparklinegroup at the specified position.
Declaration
public ExcelSparkline this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System. |
index | The position of the Sparklinegroup. 0-base |
Property Value
Type | Description |
---|---|
Excel |
Methods
GetEnumerator()
Gets the enumerator for the collection
Declaration
public IEnumerator<ExcelSparkline> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
The enumerator |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable