org.apache.poi.hssf.usermodel.HSSFWorkbook.getNumberOfFonts()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(177)

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

HSSFWorkbook.getNumberOfFonts介绍

[英]get the number of fonts in the font table
[中]获取字体表中的字体数

代码示例

代码示例来源:origin: com.haulmont.thirdparty/poi

  1. /**
  2. * create a new Font and add it to the workbook's font table
  3. * @return new font object
  4. */
  5. public HSSFFont createFont()
  6. {
  7. FontRecord font = workbook.createNewFont();
  8. short fontindex = (short) (getNumberOfFonts() - 1);
  9. if (fontindex > 3)
  10. {
  11. fontindex++; // THERE IS NO FOUR!!
  12. }
  13. if(fontindex == Short.MAX_VALUE){
  14. throw new IllegalArgumentException("Maximum number of fonts was exceeded");
  15. }
  16. // Ask getFontAt() to build it for us,
  17. // so it gets properly cached
  18. return getFontAt(fontindex);
  19. }

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

  1. /**
  2. * create a new Font and add it to the workbook's font table
  3. * @return new font object
  4. */
  5. public HSSFFont createFont()
  6. {
  7. FontRecord font = workbook.createNewFont();
  8. short fontindex = (short) (getNumberOfFonts() - 1);
  9. if (fontindex > 3)
  10. {
  11. fontindex++; // THERE IS NO FOUR!!
  12. }
  13. if(fontindex == Short.MAX_VALUE){
  14. throw new IllegalArgumentException("Maximum number of fonts was exceeded");
  15. }
  16. // Ask getFontAt() to build it for us,
  17. // so it gets properly cached
  18. return getFontAt(fontindex);
  19. }

代码示例来源:origin: com.haulmont.thirdparty/poi

  1. /**
  2. * Finds a font that matches the one with the supplied attributes
  3. */
  4. public HSSFFont findFont(short boldWeight, short color, short fontHeight,
  5. String name, boolean italic, boolean strikeout,
  6. short typeOffset, byte underline)
  7. {
  8. for (short i=0; i<=getNumberOfFonts(); i++) {
  9. // Remember - there is no 4!
  10. if(i == 4) continue;
  11. HSSFFont hssfFont = getFontAt(i);
  12. if (hssfFont.getBoldweight() == boldWeight
  13. && hssfFont.getColor() == color
  14. && hssfFont.getFontHeight() == fontHeight
  15. && hssfFont.getFontName().equals(name)
  16. && hssfFont.getItalic() == italic
  17. && hssfFont.getStrikeout() == strikeout
  18. && hssfFont.getTypeOffset() == typeOffset
  19. && hssfFont.getUnderline() == underline)
  20. {
  21. return hssfFont;
  22. }
  23. }
  24. return null;
  25. }

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

  1. /**
  2. * Finds a font that matches the one with the supplied attributes
  3. */
  4. public HSSFFont findFont(short boldWeight, short color, short fontHeight,
  5. String name, boolean italic, boolean strikeout,
  6. short typeOffset, byte underline)
  7. {
  8. for (short i=0; i<=getNumberOfFonts(); i++) {
  9. // Remember - there is no 4!
  10. if(i == 4) continue;
  11. HSSFFont hssfFont = getFontAt(i);
  12. if (hssfFont.getBoldweight() == boldWeight
  13. && hssfFont.getColor() == color
  14. && hssfFont.getFontHeight() == fontHeight
  15. && hssfFont.getFontName().equals(name)
  16. && hssfFont.getItalic() == italic
  17. && hssfFont.getStrikeout() == strikeout
  18. && hssfFont.getTypeOffset() == typeOffset
  19. && hssfFont.getUnderline() == underline)
  20. {
  21. return hssfFont;
  22. }
  23. }
  24. return null;
  25. }

相关文章

HSSFWorkbook类方法