Interface IRichComboValuesConfig
An object defining the indent and padding values for the Rich text editor.
Package: @aurigma/design-editor-iframe
Remarks
You can use these settings in IRichTextDialogConfig.
Examples
configuration = {
widgets: {
RichTextDialog: {
bgColor: "lightgray",
richComboValues: {
padding: { max: 50, min: 5, step: 5 }
}
}
}
};
Properties
indent
Sets indent values for formatted text.
Declaration
indent?: IRangeParams;
Property Value
Type | Description |
---|---|
IRangeParams | Sets indent values for formatted text. |
padding
Sets padding values for formatted text.
Declaration
padding?: IRangeParams;
Property Value
Type | Description |
---|---|
IRangeParams | Sets padding values for formatted text. |