Interface IRangeParams
A structure defining a range of values.
Package: @aurigma/design-editor-iframe
Examples
configuration = {
widgets: {
common: {
fontSize: { max: 50, min: 5, step: 5 },
tracking: { max: 100, min: -50, step: 25 },
leading: { max: 50, min: 5, step: 5 }
}
}
};
Properties
max
Sets a min value of a range.
Declaration
max?: number;
Property Value
| Type | Description |
|---|---|
| number | Sets a min value of a range. |
min
Sets a max value of a range.
Declaration
min?: number;
Property Value
| Type | Description |
|---|---|
| number | Sets a max value of a range. |
step
The parameter changes by this step value.
Declaration
step?: number;
Property Value
| Type | Description |
|---|---|
| number | The parameter changes by this step value. |