📄 pdffont.java
字号:
/*
* Created on 2005-10-28
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package smart.app.pdf;
import java.awt.Color;
import com.lowagie.text.Font;
import com.lowagie.text.pdf.BaseFont;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class PdfFont extends Font {
/**
* @param arg0
*/
public PdfFont(Font arg0) {
super(arg0);
}
/**
* @param arg0
* @param arg1
* @param arg2
* @param arg3
*/
public PdfFont(int arg0, float arg1, int arg2, Color arg3) {
super(arg0, arg1, arg2, arg3);
}
/**
* @param arg0
* @param arg1
* @param arg2
* @param arg3
*/
public PdfFont(BaseFont arg0, float arg1, int arg2, Color arg3) {
super(arg0, arg1, arg2, arg3);
}
/**
* @param arg0
* @param arg1
* @param arg2
*/
public PdfFont(BaseFont arg0, float arg1, int arg2) {
super(arg0, arg1, arg2);
}
/**
* @param arg0
* @param arg1
*/
public PdfFont(BaseFont arg0, float arg1) {
super(arg0, arg1);
}
/**
* @param arg0
*/
public PdfFont(BaseFont arg0) {
super(arg0);
}
/**
* @param arg0
* @param arg1
* @param arg2
*/
public PdfFont(int arg0, float arg1, int arg2) {
super(arg0, arg1, arg2);
}
/**
* @param arg0
* @param arg1
*/
public PdfFont(int arg0, float arg1) {
super(arg0, arg1);
}
/**
* @param arg0
*/
public PdfFont(int arg0) {
super(arg0);
}
/**
*
*/
public PdfFont() {
super();
}
public static void main(String[] args) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -