You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/util/ITextPDFCellConfig.java

18 lines
755 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.util;
import com.itextpdf.text.Font;
import lombok.Data;
@Data
public class ITextPDFCellConfig {
private String key; //键
private String value; //值
private int keyWidth; //键宽度
private int valueWidth; //值宽度
private Font font; //字体,含中文的字符串必须添加,否则乱码
private int fixedHeight; //行高
private int totalColumn; //总宽度
private int cellMaxColumn; //单元格最大宽度
private int disableBorderSide; //单元格边框设置 0不隐藏7隐藏左、上、下边框13隐藏上、左、右边框15隐藏全部。
private int horizontalAlignment; //设置水平位置 0靠左1居中2靠右
}