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: IRichComboValuesConfig

An object defining the indent and padding values for the Rich text editor.

Remarks

You can use these settings in IRichTextDialogConfig.

Example

configuration = {
widgets: {
RichTextDialog: {
bgColor: "lightgray",
richComboValues: {
padding: { max: 50, min: 5, step: 5 },
},
},
},
};

Properties

indent?

optional indent?: IRangeParams

Sets indent values for formatted text.


padding?

optional padding?: IRangeParams

Sets padding values for formatted text.

Was this page helpful?