Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Describes a column of tabular data, used for displaying tables, select lists etc.

    interface Column {
        componentScriptURL: string | null;
        componentStyleSheetURL: string | null;
        componentType: string | null;
        contentFormat: string | null;
        contentType: ContentType;
        developerName: string;
        isDisplayValue: boolean;
        isEditable: boolean;
        isPinned: boolean;
        label: string | null;
        order: number;
        typeElementPropertyId: string;
        typeElementPropertyToDisplayId: string | null;
    }
    Index

    Properties

    componentScriptURL: string | null
    componentStyleSheetURL: string | null
    componentType: string | null

    The component that should be used to render the content for this column

    contentFormat: string | null

    A string used for formatting the data before display

    contentType: ContentType
    developerName: string
    isDisplayValue: boolean
    isEditable: boolean
    isPinned: boolean
    label: string | null
    order: number
    typeElementPropertyId: string

    ID of the corresponding object data property

    typeElementPropertyToDisplayId: string | null