类 CellPadding

java.lang.Object
com.grapecity.documents.excel.CellPadding
所有已实现的接口:
ICellPadding

public class CellPadding extends Object implements ICellPadding
获取或设置单元格边距。
  • 构造器概要

    构造器
    构造器
    说明
    CellPadding(int all)
    赋值单元格边距(cellPadding)的四个属性为相同的值
    CellPadding(int top, int right, int bottom, int left)
    为cellPadding的四个属性分配不同的值
  • 方法概要

    修饰符和类型
    方法
    说明
    int
    获取底部单元格内边距。
    int
    获取左侧单元格内边距。
    int
    获取右侧单元格内边距。
    int
    获取顶部单元格内边距。

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 构造器详细资料

    • 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