SCI_SETFOLDMARGINCOLOUR(bool useSetting, colour back)
SCI_SETFOLDMARGINHICOLOUR(bool useSetting, colour fore)
These messages allow changing the colour of the fold margin and fold
margin highlight. On Windows the fold margin colour defaults to
::GetSysColor(COLOR_3DFACE) and the fold margin highlight colour to
::GetSysColor(COLOR_3DHIGHLIGHT).
> Also, the automatic fold setting apparently doesn't work. I beliebve it
> should be able to handle clicks automatically.
SCI_SETMARGINSENSITIVEN(int margin, bool sensitive)
SCI_GETMARGINSENSITIVEN(int margin) → bool
Each of the five margins can be set sensitive or insensitive to mouse
clicks. A click in a sensitive margin sends a SCN_MARGINCLICK or
SCN_MARGINRIGHTCLICK notification to the container. Margins that are
not sensitive act as selection margins which make it easy to select
ranges of lines. By default, all margins are insensitive.
Neil