Class ExcelThemeEffectStyles
The effect styles within the theme
Implements
System.Collections.Generic.IEnumerable<ExcelThemeEffectStyle>
System.Collections.IEnumerable
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 ExcelThemeEffectStyles : XmlHelper, IEnumerable<ExcelThemeEffectStyle>, IEnumerable
Properties
Count
Number of items in the collection
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Item[Int32]
Indexer for the collection
Declaration
public ExcelThemeEffectStyle this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index |
Property Value
Type | Description |
---|---|
ExcelThemeEffectStyle | The effect style |
Methods
Add()
Adds a new effect style
Declaration
public ExcelThemeEffectStyle Add()
Returns
Type | Description |
---|---|
ExcelThemeEffectStyle |
GetEnumerator()
Gets the enumerator for the collection
Declaration
public IEnumerator<ExcelThemeEffectStyle> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<ExcelThemeEffectStyle> | The enumerator |
Remove(ExcelThemeEffectStyle)
Removes an effect style. The collection must have at least three effect styles.
Declaration
public void Remove(ExcelThemeEffectStyle item)
Parameters
Type | Name | Description |
---|---|---|
ExcelThemeEffectStyle | item | The Item |
Remove(Int32)
Remove the effect style at the specified index. The collection must have at least three effect styles.
Declaration
public void Remove(int Index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | Index | The index |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable