ScintillaControlMBS constants

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to ScintillaControlMBS control.

Support

ScintillaControlMBS.kSupportsFractionalStrokeWidth = 2

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the support constants.

Can lines be drawn with fractional widths like 1.5 or 0.5 pixels?

ScintillaControlMBS.kSupportsLineDrawsFinal = 0

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the support constants.

Whether drawing a line draws its final position. Only false on Win32 GDI.

ScintillaControlMBS.kSupportsPixelDivisions = 1

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the support constants.

Are logical pixels larger than physical pixels?
Currently only true for macOS Cocoa with 'retina' displays. When true, creating pixmaps at twice the resolution can produce clearer output with less blur.

ScintillaControlMBS.kSupportsPixelModification = 4

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the support constants.

Can individual pixels be modified? This is false for character cell platforms like curses.

ScintillaControlMBS.kSupportsTranslucentStroke = 3

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the support constants.

Can translucent lines, polygons, ellipses, and text be drawn?

White Space Visibility

ScintillaControlMBS.kWhiteSpaceInvisible = 0

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the white space visibility constants.

The normal display mode with white space displayed as an empty background colour.

ScintillaControlMBS.kWhiteSpaceVisibleAfterIndent = 2

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the white space visibility constants.
Example

dim c as ScintillaControlMBS // your control

// show white space after indent
c.ViewWS = c.kWhiteSpaceVisibleAfterIndent

White space used for indentation is displayed normally but after the first visible character, it is shown as dots and arrows.

ScintillaControlMBS.kWhiteSpaceVisibleAlways = 1

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the white space visibility constants.
Example

dim c as ScintillaControlMBS // your control

// show white space
c.ViewWS = c.kWhiteSpaceVisibleAlways

White space characters are drawn as dots and arrows,

ScintillaControlMBS.kWhiteSpaceVisibleOnlyInIndent = 3

Type Topic Plugin Version
const Scintilla MBS Scintilla Plugin 22.0
One of the white space visibility constants.
Example

dim c as ScintillaControlMBS // your control

// show white space for indent
c.ViewWS = c.kWhiteSpaceVisibleOnlyInIndent

White space used for indentation is displayed as dots and arrows.

The items on this page are in the following plugins: MBS Scintilla Plugin.


💬 Ask a question or report a problem