Show / Hide Table of Contents

Class ExcelThemeLineStyles

Defines the line styles within the theme

Inheritance
object
XmlHelper
ExcelThemeLineStyles
Implements
IEnumerable<ExcelThemeLine>
IEnumerable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: OfficeOpenXml.Drawing.Theme
Assembly: EPPlus.dll
Syntax
public class ExcelThemeLineStyles : XmlHelper, IEnumerable<ExcelThemeLine>, IEnumerable

Properties

Count

Number of items in the collection

Declaration
public int Count { get; }
Property Value
Type Description
int

this[int]

Indexer for the collection

Declaration
public ExcelThemeLine this[int index] { get; }
Parameters
Type Name Description
int index

The index

Property Value
Type Description
ExcelThemeLine

The line style

Methods

Add()

Adds a new line to the collection

Declaration
public ExcelThemeLine Add()
Returns
Type Description
ExcelThemeLine

The line

GetEnumerator()

Gets the enumerator for the collection

Declaration
public IEnumerator<ExcelThemeLine> GetEnumerator()
Returns
Type Description
IEnumerator<ExcelThemeLine>

The enumerator

Remove(ExcelThemeLine)

Removes a line item from the collection

Declaration
public void Remove(ExcelThemeLine item)
Parameters
Type Name Description
ExcelThemeLine item

The item

Remove(int)

Remove the line style at the specified index. The collection must have at least three line styles.

Declaration
public void Remove(int Index)
Parameters
Type Name Description
int Index

The index

Implements

IEnumerable<T>
IEnumerable
In this article
Back to top Generated by DocFX