Interface IShowHintSettings
The settings enabling hints for drop-down lists in the toolbar of the Rich text editor.
Package: @aurigma/design-editor-iframe
Remarks
You can use these settings in IRichTextDialogConfig. These hints are turned on by default.
Examples
This is how you can disable all the hints in the Rich text editor.
configuration = {
widgets: {
RichTextDialog: {
showHint: {
font: false,
style: false,
size: false,
tracking: false,
leading: false,
firstLineIndent: false,
paddingTop: false,
paddingBottom: false,
paddingLeft: false,
paddingRight: false
}
}
}
};
Properties
firstLineIndent
Enables the hint for the **First line indent**. The default value is true
.
Declaration
firstLineIndent?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **First line indent**. The default value is |
font
Enables the hint for the **Font name**. The default value is true
.
Declaration
font?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **Font name**. The default value is |
leading
Enables the hint for **Leading**. The default value is true
.
Declaration
leading?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for **Leading**. The default value is |
paddingBottom
Enables the hint for the **After paragraph** space. The default value is true
.
Declaration
paddingBottom?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **After paragraph** space. The default value is |
paddingLeft
Enables the hint for the **Left indent**. The default value is true
.
Declaration
paddingLeft?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **Left indent**. The default value is |
paddingRight
Enables the hint for the **Right indent**. The default value is true
.
Declaration
paddingRight?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **Right indent**. The default value is |
paddingTop
Enables the hint for the **Before paragraph** space. The default value is true
.
Declaration
paddingTop?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **Before paragraph** space. The default value is |
size
Enables the hint for the **Font size**. The default value is true
.
Declaration
size?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **Font size**. The default value is |
style
Enables the hint for the **Font style**. The default value is true
.
Declaration
style?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for the **Font style**. The default value is |
tracking
Enables the hint for **Tracking**. The default value is true
.
Declaration
tracking?: boolean;
Property Value
Type | Description |
---|---|
boolean | Enables the hint for **Tracking**. The default value is |