MergeRegion
Overview
MergeRegion is a class in Aspose.Cells FOSS for Java.
Represents a merge region in an Excel worksheet.
This class provides 5 methods for working with MergeRegion objects in Java programs.
Available methods include: MergeRegion, getFirstColumn, getFirstRow, getTotalColumns, getTotalRows.
All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package.
Properties: firstColumn, firstRow, totalColumns, totalRows.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
firstRow | int | Read | Returns the first row. |
firstColumn | int | Read | Returns the first column. |
totalRows | int | Read | Returns the total rows. |
totalColumns | int | Read | Returns the total columns. |
Methods
| Signature | Description |
|---|---|
MergeRegion(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int) | Initializes a new MergeRegion instance. |
getFirstRow() → int | Returns the first row. |
getFirstColumn() → int | Returns the first column. |
getTotalRows() → int | Returns the total rows. |
getTotalColumns() → int | Returns the total columns. |