org.apache.poi.xssf.usermodel.XSSFComment.setString()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(101)

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

XSSFComment.setString介绍

[英]Sets the rich text string used by this comment.
[中]设置此注释使用的富文本字符串。

代码示例

代码示例来源:origin: org.apache.poi/poi-ooxml

public void setString(String string) {
  setString(new XSSFRichTextString(string));
}

代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev

public void setString(String string) {
  setString(new XSSFRichTextString(string));
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi

public void setString(String string) {
  setString(new XSSFRichTextString(string));
}

代码示例来源:origin: jbaliuka/x4j-analytic

@Override
public void process(XLXContext context) throws Exception {
  Object value = expression.evaluate(context);
  if(value != null){
    writeRef(context);
    writeStyle(context, value);
    writeType(context, value);            
    writeFormula(context, value);            
    writeValue(context, value);
  }
  if(comment != null){
    Object cmt = commnetExpr.evaluate(context);        
    comment.setString(cmt == null ? "" :cmt.toString());
  }        
  if (isMerged(context)) {
    writeMergedRegion(context);
  }
}

相关文章