# column_getStart

# Function: column\_getStart()

```ts
function column_getStart<TFeatures, TData, TValue>(column, position?): number;
```

Defined in: [features/column-sizing/columnSizingFeature.utils.ts:186](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-sizing/columnSizingFeature.utils.ts#L186)

Computes the offset from the start edge of a pinning region to this column.

The value is the sum of all previous visible leaf column sizes in the
requested `'start'`, `'center'`, or `'end'` region.

`start` and `end` are logical positions. In LTR languages/layouts, `start`
usually corresponds to left and `end` to right. In RTL languages/layouts,
`start` usually corresponds to right and `end` to left.

## Type Parameters

### TFeatures

`TFeatures` *extends* [`TableFeatures`](../../index/interfaces/TableFeatures.md)

### TData

`TData` *extends* [`RowData`](../../index/type-aliases/RowData.md)

### TValue

`TValue` *extends* `unknown` = `unknown`

## Parameters

### column

[`Column_Internal`](../../index/interfaces/Column_Internal.md)\<`TFeatures`, `TData`, `TValue`\>

### position?

[`ColumnPinningPosition`](../../index/type-aliases/ColumnPinningPosition.md) | `"center"`

## Returns

`number`

## Example

```ts
const startOffset = column_getStart(column, 'start')
```
