Member Junction
    Preparing search index...

    Column definition for export

    interface ExportColumn {
        dataType?: ColumnDataType;
        displayName?: string;
        hidden?: boolean;
        name: string;
        numberFormat?: string;
        style?: CellStyle;
        width?: number;
    }
    Index

    Properties

    dataType?: ColumnDataType

    Data type hint for formatting

    displayName?: string

    Display name for the column header

    hidden?: boolean

    Whether the column is hidden

    name: string

    The field/property name in the data

    numberFormat?: string

    Number format string (Excel only)

    style?: CellStyle

    Column-level style (applied to all cells in this column)

    width?: number

    Column width in characters (Excel only)