org.apache.poi.ss.usermodel.Row.getRowStyle()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(291)

本文整理了Java中org.apache.poi.ss.usermodel.Row.getRowStyle方法的一些代码示例,展示了Row.getRowStyle的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Row.getRowStyle方法的具体详情如下:
包路径:org.apache.poi.ss.usermodel.Row
类名称:Row
方法名:getRowStyle

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++) {

相关文章