Interface IControlAttributeHeightEditor

interface IControlAttributeHeightEditor {
    cssClass?: string;
    defaultValue?: string;
    description?: ResourcedString;
    disabledExpression?: string;
    displayName: ResourcedString;
    hiddenExpression?: string;
    hideOnDisable?: boolean;
    labels?: {
        fixed: string;
        resize: string;
    };
    localizable?: string | boolean;
    migrationValue?: undefined;
    order?: number;
    required?: string | boolean;
    states?: {
        hideFill?: boolean;
        hideFixed?: boolean;
        hideResizeByContent?: boolean;
    };
    triggerResizeOnChange?: boolean;
    type: "HeightEditor" | HeightEditor;
}

Hierarchy

  • BaseControlAttribute
    • IControlAttributeHeightEditor

Properties

cssClass?: string
defaultValue?: string
description?: ResourcedString
disabledExpression?: string
displayName: ResourcedString
hiddenExpression?: string
hideOnDisable?: boolean
labels?: {
    fixed: string;
    resize: string;
}
localizable?: string | boolean
migrationValue?: undefined
order?: number
required?: string | boolean
states?: {
    hideFill?: boolean;
    hideFixed?: boolean;
    hideResizeByContent?: boolean;
}
triggerResizeOnChange?: boolean
type: "HeightEditor" | HeightEditor