java hssffont_Java HSSFFont.setFontHeightInPoints方法代碼示例

本文整理匯總了Java中org.apache.poi.hssf.usermodel.HSSFFont.setFontHeightInPoints方法的典型用法代碼示例。如果您正苦於以下問題:Java HSSFFont.setFontHeightInPoints方法的具體用法?Java HSSFFont.setFontHeightInPoints怎麽用?Java HSSFFont.setFontHeightInPoints使用的例子?那麽恭喜您, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.poi.hssf.usermodel.HSSFFont的用法示例。

在下文中一共展示了HSSFFont.setFontHeightInPoints方法的29個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於我們的係統推薦出更棒的Java代碼示例。

示例1: createHSSFCellStyle

​點讚 4

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

private HSSFCellStyle createHSSFCellStyle(Workbook wb, int[] bgColor, int[] fontColor, int fontSize) {

HSSFWorkbook workbook = (HSSFWorkbook) wb;

HSSFPalette palette = workbook.getCustomPalette();

palette.setColorAtIndex((short) 9, (byte) fontColor[0], (byte) fontColor[1], (byte) fontColor[2]);

palette.setColorAtIndex((short) 10, (byte) bgColor[0], (byte) bgColor[1], (byte) bgColor[2]);

HSSFFont titleFont = workbook.createFont();

titleFont.setCharSet(HSSFFont.DEFAULT_CHARSET);

titleFont.setFontName("宋體");

titleFont.setColor((short) 9);

titleFont.setBold(true);

titleFont.setFontHeightInPoints((short) fontSize);

HSSFCellStyle titleStyle = (HSSFCellStyle) createBorderCellStyle(workbook, true);

titleStyle.setFont(titleFont);

titleStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);

titleStyle.setFillForegroundColor((short) 10);

titleStyle.setAlignment(HorizontalAlignment.CENTER);

titleStyle.setVerticalAlignment(VerticalAlignment.CENTER);

return titleStyle;

}

開發者ID:bsteker,項目名稱:bdf2,代碼行數:24,

示例2: createCellStyleForColumnHeading

​點讚 3

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

public static HSSFCellStyle createCellStyleForColumnHeading(HSSFWorkbook workBook) {

HSSFCellStyle cellStyle = workBook.createCellStyle();

HSSFFont fontObj = workBook.createFont();

cellStyle.setBorderBottom(BorderStyle.THIN);

cellStyle.setBorderTop(BorderStyle.THIN);

cellStyle.setBorderLeft(BorderStyle.THIN);

cellStyle.setBorderRight(BorderStyle.THIN);

cellStyle.setWrapText(true);

cellStyle.setAlignment(HorizontalAlignment.CENTER);

cellStyle.setFillBackgroundColor(Short.valueOf("22").shortValue());

cellStyle.setFillPattern(FillPatternType.BIG_SPOTS);

cellStyle.setFillForegroundColor(Short.valueOf("22").shortValue());

cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);

fontObj.setFontName("Calibri");

fontObj.setFontHeightInPoints(Short.valueOf("12").shortValue());

fontObj.setBold(true);

fontObj.setColor(Short.valueOf("8").shortValue());

cellStyle.setFont(fontObj);

return cellStyle;

}

開發者ID:siteadmin,項目名稱:CCDA-Score-CARD,代碼行數:21,

示例3: writeCaption

​點讚 3

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

/**

* @see org.displaytag.render.TableWriterTemplate#writeCaption(org.displaytag.model.TableModel)

*/

@Override

protected void writeCaption(TableModel model) throws Exception

{

HSSFCellStyle style = this.wb.createCellStyle();

HSSFFont bold = this.wb.createFont();

bold.setBoldweight(Font.BOLDWEIGHT_BOLD);

bold.setFontHeightInPoints((short) 14);

style.setFont(bold);

style.setAlignment(CellStyle.ALIGN_CENTER);

this.colNum = 0;

this.currentRow = this.sheet.createRow(this.sheetRowNum++);

this.currentCell = this.currentRow.createCell(this.colNum);

this.currentCell.setCellStyle(style);

String caption = model.getCaption();

this.currentCell.setCellValue(new HSSFRichTextString(caption));

this.rowSpanTable(model);

}

開發者ID:webbfontaine,項目名稱:displaytag,代碼行數:22,

示例4: initStili

​點讚 3

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

/**

* ereditare questo metodo per modificare gli stili utilizzati

*/

protected void initStili()

{

HSSFFont fontGrassetto = _workBook.createFont();

fontGrassetto.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

fontGrassetto.setFontHeightInPoints((short) 10);

HSSFFont fontTesto = _workBook.createFont();

fontTesto.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL );

fontTesto.setFontHeightInPoints((short) 10);

_styleIntestazioni = _workBook.createCellStyle();

_styleIntestazioni.setFont(fontGrassetto);

_styleIntestazioni.setBorderTop(HSSFCellStyle.BORDER_MEDIUM);

_styleIntestazioni.setBorderRight(HSSFCellStyle.BORDER_MEDIUM);

_styleIntestazioni.setBorderBottom(HSSFCellStyle.BORDER_MEDIUM);

_styleIntestazioni.setBorderLeft(HSSFCellStyle.BORDER_MEDIUM);

_styleIntestazioni.setAlignment(HSSFCellStyle.ALIGN_CENTER);

_styleIntestazioni.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

_styleTesto = _workBook.createCellStyle();

_styleTesto.setFont(fontTesto);

}

開發者ID:giasap0,項目名稱:konga,代碼行數:26,

示例5: setHeaderStyle

​點讚 3

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

private void setHeaderStyle(HSSFWorkbook wb) {

HSSFCellStyle style = wb.createCellStyle();

HSSFFont font = wb.createFont();

font.setColor(HSSFColor.BLACK.index);

font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

font.setFontHeightInPoints((short) 8);

style.setFont(font);

style.setAlignment(HSSFCellStyle.ALIGN_CENTER);

style.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);

style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);

style.setBorderLeft(HSSFCellStyle.BORDER_THIN);

style.setBorderRight(HSSFCellStyle.BORDER_THIN);

style.setBorderBottom(HSSFCellStyle.BORDER_THIN);

style.setBorderTop(HSSFCellStyle.BORDER_THIN);

style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

style.setWrapText(true);

headerStyle = style;

}

開發者ID:FenixEdu,項目名稱:fenixedu-commons,代碼行數:19,

示例6: setVerticalHeaderStyle

​點讚 3

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

private void setVerticalHeaderStyle(HSSFWorkbook wb) {

verticalHeaderStyle = wb.createCellStyle();

HSSFFont font = wb.createFont();

font.setColor(HSSFColor.BLACK.index);

font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

font.setFontHeightInPoints((short) 8);

verticalHeaderStyle.setFont(font);

verticalHeaderStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);

verticalHeaderStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);

verticalHeaderStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);

verticalHeaderStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);

verticalHeaderStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);

verticalHeaderStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);

verticalHeaderStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);

verticalHeaderStyle.setRotation((short) 90);

}

開發者ID:FenixEdu,項目名稱:fenixedu-commons,代碼行數:17,

示例7: setDoubleNegativeStyle

​點讚 3

import org.apache.poi.hssf.usermodel.HSSFFont; //導入方法依賴的package包/類

private void setDoubleNegativeStyle(HSSFWorkbook wb) {

HSSFCellStyle style = wb.c

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值