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.Int32 |
Item[Int32]
Returns the sparklinegroup at the specified position.
Declaration
public ExcelSparkline this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | 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 |
---|---|
System.Collections.Generic.IEnumerator<ExcelSparkline> | The enumerator |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable