接口 ITableColumn


public interface ITableColumn
Represents a column in a table. The ITableColumn object is a memberof the ITableColumns collection. The ITableColumns collectioncontains all the columns in a table ( ITable object).
  • 方法详细资料

    • getIndex

      int getIndex()
      Returns the index number of the ITableColumn object within theITableColumns collection.
    • getName

      String getName()
      Gets the name of the table column. This is also used as the display name of the table column. This name must be unique within the table.
    • setName

      void setName(String value)
      Sets the name of the table column. This is also used as the display name of the table column. This name must be unique within the table.
    • getTotalsCalculation

      TotalsCalculation getTotalsCalculation()
      Determines the type of calculation in the Totals row of the table column based on the value of the TotalsCalculation enumeration.
    • setTotalsCalculation

      void setTotalsCalculation(TotalsCalculation value)
      Determines the type of calculation in the Totals row of the table column based on the value of the TotalsCalculation enumeration.
    • getTotal

      IRange getTotal()
      Returns the Total row for the ITableColumn object.
    • delete

      void delete()
      Deletes the column of data in the table.
    • getDataBodyRange

      IRange getDataBodyRange()
      Returns the IRange object that is the size of the data portion of acolumn.
    • getRange

      IRange getRange()
      Returns the IRange object that represents the range to which thespecified list object in the above list applies.
    • getDataField

      String getDataField()
      Returns the name of data field of current table column.
    • setDataField

      void setDataField(String value)
      Sets the name of data field of current table column.