本文整理了Java中org.apache.poi.ss.usermodel.Row.getRowStyle
方法的一些代码示例,展示了Row.getRowStyle
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Row.getRowStyle
方法的具体详情如下:
包路径:org.apache.poi.ss.usermodel.Row
类名称:Row
方法名:getRowStyle
[英]Returns the whole-row cell styles. Most rows won't have one of these, so will return null. Call #isFormatted() to check first.
[中]返回整行单元格样式。大多数行都没有这些,因此将返回null。首先调用#isFormatted()进行检查。
代码示例来源:origin: looly/hutool
/**
* 获取或创建某一行的样式,返回样式后可以设置样式内容
*
* @param y Y坐标,从0计数,既行号
* @return {@link CellStyle}
* @since 4.1.4
*/
public CellStyle getOrCreateRowStyle(int y) {
final Row row = getOrCreateRow(y);
CellStyle rowStyle = row.getRowStyle();
if (null == rowStyle) {
rowStyle = this.workbook.createCellStyle();
row.setRowStyle(rowStyle);
}
return rowStyle;
}
代码示例来源:origin: looly/hutool
/**
* 获取或创建某一行的样式,返回样式后可以设置样式内容
*
* @param y Y坐标,从0计数,既行号
* @return {@link CellStyle}
* @since 4.1.4
*/
public CellStyle getOrCreateRowStyle(int y) {
final Row row = getOrCreateRow(y);
CellStyle rowStyle = row.getRowStyle();
if (null == rowStyle) {
rowStyle = this.workbook.createCellStyle();
row.setRowStyle(rowStyle);
}
return rowStyle;
}
代码示例来源:origin: cn.hutool/hutool-all
/**
* 获取或创建某一行的样式,返回样式后可以设置样式内容
*
* @param y Y坐标,从0计数,既行号
* @return {@link CellStyle}
* @since 4.1.4
*/
public CellStyle getOrCreateRowStyle(int y) {
final Row row = getOrCreateRow(y);
CellStyle rowStyle = row.getRowStyle();
if (null == rowStyle) {
rowStyle = this.workbook.createCellStyle();
row.setRowStyle(rowStyle);
}
return rowStyle;
}
代码示例来源:origin: com.gitee.zhaohuihua/zhh-tools
target.setRowStyle(src.getRowStyle());
代码示例来源:origin: hellojavaer/poi-excel-utils
templateRow.setHeight(tempRow.getHeight());
templateRow.setHeightInPoints(tempRow.getHeightInPoints());
templateRow.setRowStyle(tempRow.getRowStyle());
templateRow.setZeroHeight(tempRow.getZeroHeight());
for (int i = tempRow.getFirstCellNum(); i <= tempRow.getLastCellNum(); i++) {
内容来源于网络,如有侵权,请联系作者删除!