You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.wb.excel.api.style;
|
|
|
|
import org.apache.poi.ss.usermodel.Workbook;
|
|
|
|
/**
|
|
* 普通字体.颜色黑
|
|
* Created on 2015/1/29.
|
|
*
|
|
* @author
|
|
* @since 2.0.0
|
|
*/
|
|
public class HeadFont extends BaseFont {
|
|
public HeadFont(Workbook workbook) {
|
|
super(workbook);
|
|
}
|
|
}
|