Name
SetBulletColor -- set bullet color (V9.0)
Synopsis
SetBulletColor(color)
Function
This function sets the color to be used by bullets when using TextOut() in list mode. By default, bullets appear in the current font color set using SetFontColor(). If you want them to be drawn in a different color, you can use this function to do so. The color argument must be either an RGB value or an ARGB value for alpha-blended text.

See TextOut for more information on bullet lists.

Inputs
color
RGB or ARGB color specification
Example
SetBulletColor(#GRAY)
This code sets the bullet color to some kind of grey.


SetBulletColor(ARGB(128, #RED))
The above code sets the bullet color to half-red. The background will then shine through the text at a ratio of 50% (128=50% of 255).

Show TOC