Skip to main content
⚠️ Archived Version

You are viewing documentation for Design Editor version 7.2, which is no longer actively maintained. For the latest features and updates, please refer to the current version (7.3).

Interface: IAutoZoomConfig

A structure containing auto-zoom configuration of the Rich text editor.

Remarks

You can use these settings in IRichTextDialogConfig.

Example

"RichTextDialog": {
"zoom": {
// Enables the zoom slider in the Rich text editor.
"enabled": true,
"minZoomPct": 10,
"maxZoomPct": 500,
"autoZoom": {
// Enables auto-zoom at opening the text editor.
"enabled": true,
// Auto-zooms the text in if the text font size is less than this threshold.
"minFontSizeThresholdPt": 12,
// Auto-zooms the text out if the text font size is more than this threshold.
"maxFontSizeThresholdPt": 36
}
}
}

Properties

enabled?

optional enabled?: boolean

Enables auto-zoom at opening the Rich text editor. The default value is false.


minFontSizeThresholdPt?

optional minFontSizeThresholdPt?: number

The font size threshold, in points. If the text font size is less than this threshold, the text is auto-zoomed in. The default value is 12.


maxFontSizeThresholdPt?

optional maxFontSizeThresholdPt?: number

The font size threshold, in points. If the text font size is more than this threshold, the text is auto-zoomed out. The default value is 36.

Was this page helpful?