[]
Represents a collection of table styles contained in the workbook.
public interface ITableStyleCollection
Gets the number of table styles in the collection.
int Count { get; }
The count.
Gets the GrapeCity.Documents.Excel.TableStyle with the specified name.
ITableStyle this[int index] { get; }
index
intThe GrapeCity.Documents.Excel.TableStyle.
Gets the GrapeCity.Documents.Excel.TableStyle with the specified name.
ITableStyle this[string name] { get; }
name
stringThe name.
The GrapeCity.Documents.Excel.TableStyle.
Adds the specified table style.
ITableStyle Add(string name)
name
stringThe table style name.
Determines whether the style with specified name is contained in ITableStyle.
bool Contains(string name)
name
stringThe style name.
Whether the style name is contained.