Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Zooming

jacobslusser edited this page May 31, 2015 · 2 revisions

Scintilla can increase or decrease the size of the displayed text by a "zoom factor":

scintilla.ZoomIn(); // Increase
scintilla.ZoomOut(); // Decrease
scintilla.Zoom = 15; // "I like big 'text' and I cannot lie..."

NOTE: The default key bindings set CTRL+NUMPLUS and CTRL+NUMMINUS to zoom in and zoom out, respectively.