Skip to main content

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?