[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableStyleCollection

Interface ITableStyleCollection

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a collection of table styles contained in the workbook.

public interface ITableStyleCollection

Properties

Count

Gets the number of table styles in the collection.

int Count { get; }

Property Value

int

The count.

this[int]

Gets the GrapeCity.Documents.Excel.TableStyle with the specified name.

ITableStyle this[int index] { get; }

Parameters

index int

Property Value

ITableStyle

The GrapeCity.Documents.Excel.TableStyle.

this[string]

Gets the GrapeCity.Documents.Excel.TableStyle with the specified name.

ITableStyle this[string name] { get; }

Parameters

name string

The name.

Property Value

ITableStyle

The GrapeCity.Documents.Excel.TableStyle.

Methods

Add(string)

Adds the specified table style.

ITableStyle Add(string name)

Parameters

name string

The table style name.

Returns

ITableStyle

ITableStyle

Contains(string)

Determines whether the style with specified name is contained in ITableStyle.

bool Contains(string name)

Parameters

name string

The style name.

Returns

bool

Whether the style name is contained.