类 CellPadding
java.lang.Object
com.grapecity.documents.excel.CellPadding
- 所有已实现的接口:
ICellPadding
获取或设置单元格边距。
-
构造器概要
构造器说明CellPadding
(int all) 赋值单元格边距(cellPadding)的四个属性为相同的值CellPadding
(int top, int right, int bottom, int left) 为cellPadding的四个属性分配不同的值 -
方法概要
-
构造器详细资料
-
CellPadding
public CellPadding(int all) 赋值单元格边距(cellPadding)的四个属性为相同的值- 参数:
all
- 所有边的填充值。
-
CellPadding
public CellPadding(int top, int right, int bottom, int left) 为cellPadding的四个属性分配不同的值- 参数:
top
- 顶部边距的整数值。right
- 右侧边距的整数值。bottom
- 底部边距的整数值。left
- 左侧边距的整数值。
-
-
方法详细资料
-
getLeft
public int getLeft()获取左侧单元格内边距。- 指定者:
getLeft
在接口中ICellPadding
-
getRight
public int getRight()获取右侧单元格内边距。- 指定者:
getRight
在接口中ICellPadding
-
getTop
public int getTop()获取顶部单元格内边距。- 指定者:
getTop
在接口中ICellPadding
-
getBottom
public int getBottom()获取底部单元格内边距。- 指定者:
getBottom
在接口中ICellPadding
-