Interface ILineEditorLine

interface ILineEditorLine {
    columns?: ITableControlOptionsColumn[];
    explanation?: string;
    extraOptions?: IAnyMap;
    groups?: IDropdownGroup[];
    help: string;
    hide?: boolean;
    id?: string;
    key?: number;
    multiple?: boolean;
    noEdit?: boolean;
    options?: IDropdownOption[];
    readonly?: boolean;
    required?: boolean;
    type: LineType;
    value: string;
}

Properties

columns?: ITableControlOptionsColumn[]
explanation?: string
extraOptions?: IAnyMap
groups?: IDropdownGroup[]
help: string
hide?: boolean
id?: string
key?: number
multiple?: boolean
noEdit?: boolean
options?: IDropdownOption[]
readonly?: boolean
required?: boolean
type: LineType
value: string

Generated using TypeDoc