ExtendedColumn

Extended column with a calculated width property.

Definition

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

Usage

import { ExtendedColumn } from 'uxp/components';

Last updated