[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableColumn

Interface ITableColumn

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a column in a table. The ITableColumn object is a member of the ITableColumns collection. The ITableColumns collection contains all the columns in a table (ITable object).

public interface ITableColumn

Properties

DataBodyRange

Returns the IRange object that is the size of the data portion of a column (read-only).

IRange DataBodyRange { get; }

Property Value

IRange

DataField

Gets or sets the name of data field of current table column.

string DataField { get; set; }

Property Value

string

Index

Returns the index number of the ITableColumn object within the ITableColumns collection (read-only).

int Index { get; }

Property Value

int

Name

Gets or 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 (read or write).

string Name { get; set; }

Property Value

string

Range

Returns the IRange object that represents the range to which the specified list object in the above list applies (read-only).

IRange Range { get; }

Property Value

IRange

Total

Returns the Total row for the ITableColumn object (read-only).

IRange Total { get; }

Property Value

IRange

TotalsCalculation

Determines the type of calculation in the Totals row of the table column based on the value of the TotalsCalculation enumeration (read or write).

TotalsCalculation TotalsCalculation { get; set; }

Property Value

TotalsCalculation

Methods

Delete()

Deletes the column of data in the table.

void Delete()