Row
Overview
Row is a class in Aspose.Cells FOSS for Java.
Represents a row in a worksheet.
This class provides 8 methods for working with Row objects in Java programs.
Available methods include: getGroupLevel, getHeight, isCollapsed, isHidden, setCollapsed, setGroupLevel, setHeight, setHidden.
All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package.
Properties: collapsed, groupLevel, height, hidden.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
height | Double | Read | Returns the height. |
hidden | boolean | Read | Returns the hidden. |
groupLevel | int | Read | Returns the outline/group nesting level (0 = ungrouped, 1–7). |
collapsed | boolean | Read | Returns true if this row’s outline group is collapsed. |
Methods
| Signature | Description |
|---|---|
getHeight() → Double | Returns the height. |
setHeight(value: Double) | Sets the height. |
isHidden() → boolean | Returns the hidden. |
setHidden(value: boolean) | Sets the hidden. |
getGroupLevel() → int | Returns the outline/group nesting level (0 = ungrouped, 1–7). |
setGroupLevel(level: int) | Sets the outline/group nesting level (0 = ungrouped, 1–7). |
isCollapsed() → boolean | Returns true if this row’s outline group is collapsed. |
setCollapsed(value: boolean) | Sets whether this row’s outline group is collapsed. |