Interface IControlAttributeCheckbox

interface IControlAttributeCheckbox {
    cssClass?: string;
    defaultValue?: boolean;
    description?: ResourcedString;
    disabledExpression?: string;
    displayName: ResourcedString;
    hiddenExpression?: string;
    hideOnDisable?: boolean;
    localizable?: string | boolean;
    migrationValue?: boolean;
    order?: number;
    required?: string | boolean;
    triggerResizeOnChange?: boolean;
    type: "Checkbox" | Checkbox;
}

Hierarchy

  • Omit<BaseControlAttribute, "migrationValue">
    • IControlAttributeCheckbox

Properties

cssClass?: string
defaultValue?: boolean
description?: ResourcedString
disabledExpression?: string
displayName: ResourcedString
hiddenExpression?: string
hideOnDisable?: boolean
localizable?: string | boolean
migrationValue?: boolean
order?: number
required?: string | boolean
triggerResizeOnChange?: boolean
type: "Checkbox" | Checkbox