Class CellPadding
-
Constructor Summary
Constructors
赋值单元格边距(cellPadding)的四个属性为相同的值
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
CellPadding
public CellPadding(int all)
赋值单元格边距(cellPadding)的四个属性为相同的值
- Parameters:
all - 所有边的填充值。
-
CellPadding
public CellPadding(int top,
int right,
int bottom,
int left)
为cellPadding的四个属性分配不同的值
- Parameters:
top - 顶部边距的整数值。
right - 右侧边距的整数值。
bottom - 底部边距的整数值。
left - 左侧边距的整数值。
-