1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 21:15:15 +00:00
qb64/internal/help/_BLINK-(function).md

32 lines
459 B
Markdown
Raw Normal View History

The [_BLINK](_BLINK) function returns the current blink setting for SCREEN 0 colors. If enabled, returns -1 (default), otherwise returns 0.
## Syntax
> blinkState%% = [_BLINK](_BLINK)
## Availability
* Build 20170816/61 and up.
## Example(s)
```vb
COLOR 16, 7
'Try uncommenting the line below:
'_BLINK OFF
IF _BLINK THEN
PRINT "I'm blinking"
ELSE
PRINT "I'm not blinking"
END IF
```
## See Also
* [_BLINK](_BLINK) (statement)
* [OUT](OUT)