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?
optionalfont?:boolean
Enables the hint for the Font name. The default value is true.
style?
optionalstyle?:boolean
Enables the hint for the Font style. The default value is true.
size?
optionalsize?:boolean
Enables the hint for the Font size. The default value is true.
tracking?
optionaltracking?:boolean
Enables the hint for Tracking. The default value is true.
leading?
optionalleading?:boolean
Enables the hint for Leading. The default value is true.
firstLineIndent?
optionalfirstLineIndent?:boolean
Enables the hint for the First line indent. The default value is true.
paddingTop?
optionalpaddingTop?:boolean
Enables the hint for the Before paragraph space. The default value is true.
paddingBottom?
optionalpaddingBottom?:boolean
Enables the hint for the After paragraph space. The default value is true.
paddingLeft?
optionalpaddingLeft?:boolean
Enables the hint for the Left indent. The default value is true.
paddingRight?
optionalpaddingRight?:boolean
Enables the hint for the Right indent. The default value is true.