Interface ITextWidgetOptions

interface ITextWidgetOptions {
    callback?: WidgetPanelCallback;
    inputStyle?: Partial<CSSStyleDeclaration>;
    label?: string;
    max_length?: number;
    multiline: boolean;
    property?: string;
    type?: string;
}

Hierarchy (view full)

Properties

inputStyle?: Partial<CSSStyleDeclaration>
label?: string
max_length?: number
multiline: boolean
property?: string
type?: string