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
| Name | Type | Access | Description |
|---|---|---|---|
cells | Cells | Read | 返回此行的细胞集合,如果需要就会惰地创建它. |
fixedRowHeight | double | Read | 返回固定行高度以点表示. |
minRowHeight | double | Read | 返回最小行高度以点表示. |
backgroundColor | Color | Read | 返回此行的背景颜色. |
border | BorderInfo | Read | 返回此行边界的样式. |
Methods
| Signature | Description |
|---|---|
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) | 设置此行边界的样式. |