类 CellInfo

java.lang.Object
com.grapecity.documents.excel.CellInfo

public final class CellInfo extends Object
提供一些辅助函数。
  • 构造器详细资料

    • CellInfo

      public CellInfo()
  • 方法详细资料

    • RowIndexToName

      public static String RowIndexToName(int index)
      获取根据行索引对应的行名称。
      参数:
      index - 行索引
      返回:
      行的名称
    • RowNameToIndex

      public static int RowNameToIndex(String name)
      获取根据行名称的行索引。
      参数:
      name - 行名称
      返回:
      行的索引
    • ColumnIndexToName

      public static String ColumnIndexToName(int index)
      获取根据列索引对应的列名。
      参数:
      index - 列索引
      返回:
      列的名称
    • ColumnNameToIndex

      public static int ColumnNameToIndex(String name)
      获取根据列名对应的列索引。
      参数:
      name - 列名
      返回:
      列的索引
    • CellIndexToName

      public static String CellIndexToName(int row, int column)
      获取单元格名称(地址),根据其行和列索引。
      参数:
      row - 行索引
      column - 列索引
      返回:
      单元格的地址
    • CellNameToIndex

      public static int[] CellNameToIndex(String name)
      获取单元格的行和列,根据其名称(地址)。
      参数:
      name - 单元格名称
      返回:
      包含转换后的行和列索引的数组
    • GetRangeBoundary

      public static Rectangle GetRangeBoundary(IRange range)
      获取指定范围的位置和大小(以像素为单位)。
      参数:
      range - 范围对象
      返回:
      包含范围位置和大小的矩形区域