DrawingMode()
Syntax
DrawingMode(Mode)Description
Change the drawing mode for text and graphics output.
Mode can be a combination of the following values:0: Default mode, text is displayed with background, graphic shapes are filled. 1: Set the text background as transparent. 2: Enable the XOR mode (all graphics are XOR'ed with the current background). 4: Enable outlined shapes. Circle, Box, etc. will only be outlined, not filled.To use several modes at once, you have to use the '|' (OR) operator. Example for XOR'ed outlined shapes:DrawingMode(2 | 4)
Supported OS
All