# GC.Spread.Sheets.Tables.TableColumn

## Content

# Class: TableColumn

[Sheets](../modules/GC.Spread.Sheets).[Tables](../modules/GC.Spread.Sheets.Tables).TableColumn

## Table of contents

### Constructors

- [constructor](GC.Spread.Sheets.Tables.TableColumn#constructor)

### Methods

- [cellType](GC.Spread.Sheets.Tables.TableColumn#celltype)
- [dataField](GC.Spread.Sheets.Tables.TableColumn#datafield)
- [dataStyle](GC.Spread.Sheets.Tables.TableColumn#datastyle)
- [footerStyle](GC.Spread.Sheets.Tables.TableColumn#footerstyle)
- [formatter](GC.Spread.Sheets.Tables.TableColumn#formatter)
- [headerStyle](GC.Spread.Sheets.Tables.TableColumn#headerstyle)
- [id](GC.Spread.Sheets.Tables.TableColumn#id)
- [name](GC.Spread.Sheets.Tables.TableColumn#name)
- [value](GC.Spread.Sheets.Tables.TableColumn#value)

## Constructors

### <a id="constructor" name="constructor"></a> constructor

• **new TableColumn**(`id`, `dataField?`, `name?`, `formatter?`, `cellType?`, `value?`, `dataStyle?`, `headerStyle?`, `footerStyle?`)

Represents the table column information.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `id` | `number` | The table column ID. |
| `dataField?` | `string` | The table column data field. |
| `name?` | `string` | The table column name. |
| `formatter?` | `string` | The table column formatter. |
| `cellType?` | [`Base`](GC.Spread.Sheets.CellTypes.Base) | The table column cellType. |
| `value?` | `Function` | The table column value convert function. |
| `dataStyle?` | `string` \| [`Style`](GC.Spread.Sheets.Style) | the data style of the table column |
| `headerStyle?` | `string` \| [`Style`](GC.Spread.Sheets.Style) | the header style of the table column |
| `footerStyle?` | `string` \| [`Style`](GC.Spread.Sheets.Style) | the footer style of the table column |

## Methods

### <a id="celltype" name="celltype"></a> cellType

▸ **cellType**(`value?`): `any`

Gets or sets the table column cellType for custom cell type.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | [`Base`](GC.Spread.Sheets.CellTypes.Base) | The table column cellType. |

#### Returns

`any`

If no value is set, returns the table column cellType; otherwise, returns the table column.

___

### <a id="datafield" name="datafield"></a> dataField

▸ **dataField**(`value?`): `any`

Gets or sets the table column data field for accessing the table's data source.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `string` | The table column data field. |

#### Returns

`any`

If no value is set, returns the table column data field; otherwise, returns the table column.

___

### <a id="datastyle" name="datastyle"></a> dataStyle

▸ **dataStyle**(`value?`): `any`

Gets or sets the table column dataStyle.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `string` \| [`Style`](GC.Spread.Sheets.Style) | The table column dataStyle. |

#### Returns

`any`

If no value is set, returns the table column dataStyle; otherwise, returns the table column.

___

### <a id="footerstyle" name="footerstyle"></a> footerStyle

▸ **footerStyle**(`value?`): `any`

Gets or sets the table column footerStyle.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `string` \| [`Style`](GC.Spread.Sheets.Style) | The table column footerStyle. |

#### Returns

`any`

If no value is set, returns the table column footerStyle; otherwise, returns the table column.

___

### <a id="formatter" name="formatter"></a> formatter

▸ **formatter**(`value?`): `any`

Gets or sets the table column formatter for format display value.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `string` | The table column formatter. |

#### Returns

`any`

If no value is set, returns the table column formatter; otherwise, returns the table column.

___

### <a id="headerstyle" name="headerstyle"></a> headerStyle

▸ **headerStyle**(`value?`): `any`

Gets or sets the table column headerStyle.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `string` \| [`Style`](GC.Spread.Sheets.Style) | The table column headerStyle. |

#### Returns

`any`

If no value is set, returns the table column headerStyle; otherwise, returns the table column.

___

### <a id="id" name="id"></a> id

▸ **id**(`value?`): `any`

Gets or sets the table column ID.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `number` | The table column ID. |

#### Returns

`any`

If no value is set, returns the table column ID; otherwise, returns the table column.

___

### <a id="name" name="name"></a> name

▸ **name**(`value?`): `any`

Gets or sets the table column name for display.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `string` | The table column name. |

#### Returns

`any`

If no value is set, returns the table column name; otherwise, returns the table column.

___

### <a id="value" name="value"></a> value

▸ **value**(`value?`): `Function`

Gets or sets the table column value convert function for display value.

#### Parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `value?` | `Function` | The table column value convert function. |

#### Returns

`Function`

If no value is set, returns the table column value convert function; otherwise, returns the table column.
