# ExtendedColumn

Extended column with a calculated width property.

## Definition

```tsx
export interface ExtendedColumn extends Column {
    /** Actual width of the column in pixels after calculations */
    width: number;
}
```

## Usage

```tsx
import { ExtendedColumn } from 'uxp/components';
```

## Related Types

* [Column](https://help.iviva.com/uxp/v5/additional-resources/types/column)
