Interface ICheckboxConfig
A structure containing the configuration of checkboxes in the Bottom toolbar.
Package: @aurigma/design-editor-iframe
Examples
This is how you can disable the Safety Line checkbox and display safety lines on the canvas.
const configuration = {
widgets: {
BottomToolbar: {
safetyLinesCheckboxEnabled: {
enabled: false, defaultValue: true
}
}
}
};
Properties
defaultValue
Specifies default value for the displayed checkbox.
Declaration
defaultValue?: boolean;
Property Value
| Type | Description |
|---|---|
| boolean | Specifies default value for the displayed checkbox. |
enabled
Specifies if the checkbox should be displayed.
Declaration
enabled: boolean;
Property Value
| Type | Description |
|---|---|
| boolean | Specifies if the checkbox should be displayed. |