Class ExcelThemeFillStyles
Defines fill styles for a theme.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml.Drawing.Theme
Assembly: EPPlus.dll
Syntax
public class ExcelThemeFillStyles : XmlHelper, IEnumerable<ExcelDrawingFill>, IEnumerable
Properties
Count
Number of items in the collection
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System. |
Item[Int32]
Indexer for the collection
Declaration
public ExcelDrawingFill this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System. |
index | The index |
Property Value
Type | Description |
---|---|
Excel |
The fill |
Methods
Add(eFillStyle)
Adds a new fill to the collection
Declaration
public ExcelDrawingFill Add(eFillStyle style)
Parameters
Type | Name | Description |
---|---|---|
e |
style | The fill style |
Returns
Type | Description |
---|---|
Excel |
The fill |
GetEnumerator()
Get the enumerator for the Theme
Declaration
public IEnumerator<ExcelDrawingFill> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
The enumerator |
Remove(ExcelDrawingFill)
Remove a fill item
Declaration
public void Remove(ExcelDrawingFill item)
Parameters
Type | Name | Description |
---|---|---|
Excel |
item | The item |
Remove(Int32)
Remove the item at the specified index
Declaration
public void Remove(int Index)
Parameters
Type | Name | Description |
---|---|---|
System. |
Index |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable