Skip to main content
⚠️ Archived Version

You are viewing documentation for Design Editor version 7.2, which is no longer actively maintained. For the latest features and updates, please refer to the current version (7.3).

Interface: IRangeParams

A structure defining a range of values.

Example

configuration = {
widgets: {
common: {
fontSize: { max: 50, min: 5, step: 5 },
tracking: { max: 100, min: -50, step: 25 },
leading: { max: 50, min: 5, step: 5 },
},
},
};

Extended by

Properties

min?

optional min?: number

Sets a max value of a range.


max?

optional max?: number

Sets a min value of a range.


step?

optional step?: number

The parameter changes by this step value.

Was this page helpful?