Class SpreadCellStyleCollection
Represents a cell style collection.
Inheritance
Inherited Members
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public class SpreadCellStyleCollection : IEnumerable<SpreadCellStyle>, IEnumerable
Properties
Count
Gets the number of elements contained in this collection.
Declaration
public int Count { get; }
Property Value
System. The number of elements contained in this collection. |
Item[String]
Gets the Spread
Declaration
public SpreadCellStyle this[string styleName] { get; }
Parameters
System.
|
Property Value
Spread The spread cell style. |
Methods
Add(String)
Creates a new cell style with the specified name.
Declaration
public SpreadCellStyle Add(string styleName)
Parameters
System. The name of the new cell style. |
Returns
Spread The style. |
Contains(String)
Determines whether the style with the specified name is in the Spread
Declaration
public bool Contains(string styleName)
Parameters
System. The name of the style. |
Returns
System. True if it is present; otherwise, false. |
Contains(SpreadCellStyle)
Determines whether the specified style is in the Spread
Declaration
public bool Contains(SpreadCellStyle style)
Parameters
Spread The style. |
Returns
System. True if it is present; otherwise, false. |
GetByName(String)
Gets the Spread
Declaration
public SpreadCellStyle GetByName(string styleName)
Parameters
System. The name of the style. |
Returns
Spread The style. |
GetEnumerator()
Returns an enumerator that iterates through the the Spread
Declaration
public IEnumerator<SpreadCellStyle> GetEnumerator()
Returns
System. A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Returns an enumerator that iterates through a the Spread
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System. An System. |