_BLINK (function) - mkilgore/QB64pe GitHub Wiki
The _BLINK function returns the current blink setting for SCREEN 0 colors. If enabled, returns -1 (default), otherwise returns 0.
- blinkState%% = _BLINK
- QB64 1.2 and up (QB64 Team)
- QBPE 0.5 and up (QB64 Phoenix Edition)
'Try uncommenting the line below:
'_BLINK OFF
IF _BLINK THEN
PRINT "I'm blinking"
ELSE
PRINT "I'm not blinking"
END IF
|
Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page