Class ExcelWorksheet.MergeCellsCollection
Collection containing merged cell addresses
Inherited Members
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 |