RowModel

Overview

RowModel is a class in Aspose.Cells FOSS for Java.

Represents a row model in the Excel file.

This class provides 10 methods for working with RowModel objects in Java programs. Available methods include: getCollapsed, getHeight, getHidden, getOutlineLevel, getStyleIndex, setCollapsed, setHeight, setHidden, setOutlineLevel, setStyleIndex. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: collapsed, height, hidden, outlineLevel, styleIndex.

Properties

NameTypeAccessDescription
heightDoubleReadReturns the height.
hiddenbooleanReadReturns the hidden.
styleIndexIntegerReadReturns the style index.
outlineLevelintReadReturns the outline level.
collapsedbooleanReadReturns the collapsed.

Methods

SignatureDescription
getHeight()DoubleReturns the height.
setHeight(height: Double)Sets the height.
getHidden()booleanReturns the hidden.
setHidden(hidden: boolean)Sets the hidden.
getStyleIndex()IntegerReturns the style index.
setStyleIndex(styleIndex: Integer)Sets the style index.
getOutlineLevel()intReturns the outline level.
setOutlineLevel(outlineLevel: int)Sets the outline level.
getCollapsed()booleanReturns the collapsed.
setCollapsed(collapsed: boolean)Sets the collapsed.

See Also