[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IStyleCollection

Interface IStyleCollection

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

Represents a collection of all the IStyle objects in the specified or active workbook.

public interface IStyleCollection : IEnumerable<IStyle>, IEnumerable
Inherited Members

Properties

Count

Returns the number of objects in the collection.

int Count { get; }

Property Value

int

this[int]

Returns the IStyle object from a collection.

IStyle this[int index] { get; }

Parameters

index int

Specifies the index of an element in the collection.

Property Value

IStyle

Returns IStyle.

this[string]

Returns the IStyle object from a collection.

IStyle this[string name] { get; }

Parameters

name string

Specifies the name of an element in the collection.

Property Value

IStyle

Returns IStyle.

Methods

Add(string, IRange)

Creates a new IStyle and adds it to the list of styles that are available for the current IWorkbook.

IStyle Add(string name, IRange baseOn = null)

Parameters

name string

The new IStyle name.

baseOn IRange

An IRange object that refers to a cell that's used as the basis for the new style. If this argument is omitted, the newly created style is based on the Normal style.

Returns

IStyle

The new IStyle.

Add(string, IStyle)

Creates a new IStyle and adds it to the list of styles that are available for the current IWorkbook.

IStyle Add(string name, IStyle baseOn)

Parameters

name string

The new IStyle name.

baseOn IStyle

A IStyle object that refers to be used as the basis for the new style.

Returns

IStyle

The new IStyle.

Contains(string)

Determines whether the style name is contained in IStyleCollection.

bool Contains(string name)

Parameters

name string

The style name.

Returns

bool

Whether the style name is contained.