vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface OmniScriptInputElementDefinition<T, TProps>

    interface OmniScriptInputElementDefinition<
        T extends OmniScriptElementType = OmniScriptInputElementType,
        TProps = object,
    > {
        bEmbed: boolean;
        bHasAttachment: boolean;
        children?: {
            bHasAttachment: boolean;
            eleArray: OmniScriptElementDefinition[];
            indexInParent: number;
            level: number;
            response: null | string;
        }[];
        index?: number;
        indexInParent: number;
        inheritShowProp?: null
        | object;
        JSONPath?: string;
        level: number;
        name: string;
        offSet: number;
        propSetMap: TProps & {
            accessibleInFutureSteps: boolean;
            conditionType: string;
            controlWidth: number;
            helpText: string;
            hide: boolean;
            inputWidth: number;
            readOnly: boolean;
            repeat: boolean;
            repeatClone: boolean;
            required: boolean;
        } & OmniScriptBaseElementPropertySet;
        response?: null
        | object;
        rootIndex?: number;
        type: T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    bEmbed: boolean
    bHasAttachment: boolean
    children?: {
        bHasAttachment: boolean;
        eleArray: OmniScriptElementDefinition[];
        indexInParent: number;
        level: number;
        response: null | string;
    }[]
    index?: number
    indexInParent: number
    inheritShowProp?: null | object
    JSONPath?: string
    level: number
    name: string
    offSet: number
    propSetMap: TProps & {
        accessibleInFutureSteps: boolean;
        conditionType: string;
        controlWidth: number;
        helpText: string;
        hide: boolean;
        inputWidth: number;
        readOnly: boolean;
        repeat: boolean;
        repeatClone: boolean;
        required: boolean;
    } & OmniScriptBaseElementPropertySet
    response?: null | object
    rootIndex?: number
    type: T