行对象
获取指定列的单元格
10.5.12
const row: ITableDataRow = portlet.getRow(0); const cell: ITableCell = row.getCell(0);
列号,从0开始
单元格对象
获取本行所有单元格
const row: ITableDataRow = portlet.getRow(0); const cells: ITableCell[] = row.getCells();
本行所有单元格
获取行号
const row: ITableDataRow = portlet.getRow(0); const rowIndex: number = row.getRowIndex();
行号
重置自定义背景样式
const row: ITableDataRow = portlet.getRow(0); row.resetBackgroundStyle();
重置自定义文字样式
const row: ITableDataRow = portlet.getRow(0); row.resetTextStyle();
设置行背景样式
const row: ITableDataRow = portlet.getRow(0); const backgroundStyle: ITableCellBackgroundStyle = { backgroundColor: '#ee5', backgroundColorOpacity: 0.8 } row.setBackgroundStyle(backgroundStyle);
背景样式
设置行的文字样式
const row: ITableDataRow = portlet.getRow(2); const textStyle: ITableCellTextStyle = { fontSize: 16, textAlign: AlignType.CENTER, textBaseline: BaselineType.MIDDLE, fontFamily: 'Microsoft Yahei', fontWeight: FontWeightType.BOLDER, fill: '#5E105E', opacity: 0.8 } row.setTextStyle(textStyle);
文字样式
行对象