Row

Overview

Row is a class in Aspose.Pdf FOSS for Java.

Represents a single row within a {@link Table}.

Properties

NameTypeAccessDescription
cellsCellsReadReturns the cells collection for this row, creating it lazily if needed.
fixedRowHeightdoubleReadReturns the fixed row height in points.
minRowHeightdoubleReadReturns the minimum row height in points.
backgroundColorColorReadReturns the background color of this row.
borderBorderInfoReadReturns the border styling for this row.

Methods

SignatureDescription
Row()Creates a new Row with default settings.
getCells()CellsReturns the cells collection for this row, creating it lazily if needed.
setCells(cells: Cells)Sets the cells collection for this row.
getFixedRowHeight()doubleReturns the fixed row height in points.
setFixedRowHeight(fixedRowHeight: double)Sets the fixed row height in points.
getMinRowHeight()doubleReturns the minimum row height in points.
setMinRowHeight(minRowHeight: double)Sets the minimum row height in points.
getBackgroundColor()ColorReturns the background color of this row.
setBackgroundColor(backgroundColor: Color)Sets the background color of this row.
getBorder()BorderInfoReturns the border styling for this row.
setBorder(border: BorderInfo)Sets the border styling for this row.

See Also