[]
Represents a merged rectangular region of cells.
public struct MergeArea
This class is immutable, you cannot change the values once an instance has been initialized. If you want to extend or truncate an existing MergeArea, you need to remove the existing one, and create and add a new one representing the extended or truncated region.
Name | Description |
---|---|
MergeArea(ushort, ushort, ushort, ushort) | Initializes a new instance of the MergeArea struct with specified cell coordinates, defining a rectangular region to be merged. |
Name | Description |
---|---|
Empty | Represents an empty merge area. |
SizeOf | Returns the size of this data when written to BIFF. |
Name | Description |
---|---|
ColumnFrom | The leftmost column of the rectangular merged region. |
ColumnTo | The rightmost column of the rectangular merged region. |
RowFrom | The upper row of the rectangular merged region. |
RowTo | The lower row of the rectangular merged region. |
Name | Description |
---|---|
ContainsCell(int, int) | Returns true if this MergeArea contains the cell at the specified row & column index. |