行级别
Row 类代表行,提供行级别的属性和操作。
| 属性 | 类型 | 说明 |
|---|---|---|
cells |
Cell[] |
该行的所有单元格 |
height |
number |
行高(像素) |
hidden |
boolean |
是否隐藏 |
rIndex |
number |
行索引 |
numFmt |
string |
数字格式 |
font |
object |
字体样式 |
alignment |
object |
对齐方式 |
border |
object |
边框样式 |
fill |
object |
填充样式 |
getCell(c: number): Cell
获取该行的指定列单元格。
const row = sheet.getRow(0); // 获取第一行
const cell = row.getCell(0); // 获取该行第一列的单元格
const row = sheet.getRow(5);
// 设置行高
row.height = 30;
// 隐藏行
row.hidden = true;
// 设置行样式
row.fill = { fgColor: '#F0F0F0' };
row.font = { bold: true };