Skip to main content

Interface: IShowHintSettings

The settings enabling hints for drop-down lists in the toolbar of the Rich text editor.

Remarks

You can use these settings in IRichTextDialogConfig. These hints are turned on by default.

Example

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

font?

optional font?: boolean

Enables the hint for the Font name. The default value is true.


style?

optional style?: boolean

Enables the hint for the Font style. The default value is true.


size?

optional size?: boolean

Enables the hint for the Font size. The default value is true.


tracking?

optional tracking?: boolean

Enables the hint for Tracking. The default value is true.


leading?

optional leading?: boolean

Enables the hint for Leading. The default value is true.


firstLineIndent?

optional firstLineIndent?: boolean

Enables the hint for the First line indent. The default value is true.


paddingTop?

optional paddingTop?: boolean

Enables the hint for the Before paragraph space. The default value is true.


paddingBottom?

optional paddingBottom?: boolean

Enables the hint for the After paragraph space. The default value is true.


paddingLeft?

optional paddingLeft?: boolean

Enables the hint for the Left indent. The default value is true.


paddingRight?

optional paddingRight?: boolean

Enables the hint for the Right indent. The default value is true.

Was this page helpful?