Row

Overview

Row 是一个类在Java的FOSS中.

表示一个 {@链接表} 内的单行.

本类提供了11种方法,用于在Java程序中使用 Row 对象. 有的方法包括: Row, getBackgroundColor, getBorder, getCells, getFixedRowHeight, getMinRowHeight, setBackgroundColor, setBorder, setCells, setFixedRowHeight, setMinRowHeight. 所有公众成员在安装了Java的FOSS包后,可以访问任何 Java应用程序. 特性: backgroundColor, border, cells, fixedRowHeight, minRowHeight.

Properties

NameTypeAccessDescription
cellsCellsRead返回此行的细胞集合,如果需要就会惰地创建它.
fixedRowHeightdoubleRead返回固定行高度以点表示.
minRowHeightdoubleRead返回最小行高度以点表示.
backgroundColorColorRead返回此行的背景颜色.
borderBorderInfoRead返回此行边界的样式.

Methods

SignatureDescription
Row()创建一个新的行,设置默认.
getCells()Cells返回此行的细胞集合,如果需要就会惰地创建它.
setCells(cells: Cells)设置此行的单元组集合.
getFixedRowHeight()double返回固定行高度以点表示.
setFixedRowHeight(fixedRowHeight: double)设置固定行高度为点.
getMinRowHeight()double返回最小行高度以点表示.
setMinRowHeight(minRowHeight: double)设置最小行高度以点表示.
getBackgroundColor()Color返回此行的背景颜色.
setBackgroundColor(backgroundColor: Color)设置此行的背景颜色.
getBorder()BorderInfo返回此行边界的样式.
setBorder(border: BorderInfo)设置此行边界的样式.

See Also

 中文