Show / Hide Table of Contents

Class ExcelWorksheet.MergeCellsCollection

Collection containing merged cell addresses

Inheritance
object
ExcelWorksheet.MergeCellsCollection
Implements
IEnumerable<string>
IEnumerable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: OfficeOpenXml
Assembly: EPPlus.dll
Syntax
public class ExcelWorksheet.MergeCellsCollection : IEnumerable<string>, 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 string this[int index] { get; }
Parameters
Type Name Description
int index

The index in the collection

Property Value
Type Description
string

this[int, int]

Indexer for the collection

Declaration
public string this[int row, int column] { get; }
Parameters
Type Name Description
int row

The Top row of the merged cells

int column

The Left column of the merged cells

Property Value
Type Description
string

Methods

GetEnumerator()

Gets the enumerator for the collection

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

The enumerator

Implements

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