[]
Represents a collection of all the IStyle objects in the specified or active workbook.
public interface IStyleCollection : IEnumerable<IStyle>, IEnumerable
Returns the number of objects in the collection.
int Count { get; }
Returns the IStyle object from a collection.
IStyle this[int index] { get; }
index
intSpecifies the index of an element in the collection.
Returns the IStyle object from a collection.
IStyle this[string name] { get; }
name
stringSpecifies the name of an element in the collection.
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)
name
stringThe new IStyle name.
baseOn
IRangeAn 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.
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)
name
stringThe new IStyle name.
baseOn
IStyleA IStyle object that refers to be used as the basis for the new style.
Determines whether the style name is contained in IStyleCollection.
bool Contains(string name)
name
stringThe style name.
Whether the style name is contained.