FB_OPTION_EXPLICIT
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfboptionexplicit
- Last revised: 2016-03-12
Intrinsic define (macro value) set by the compiler
Syntax
` FB_OPTION_EXPLICIT
`
Description
__FB_OPTION_EXPLICIT__ indicates if Option Explicit has been used previously in the source.
Returns zero (0) if the option has not been set. Returns non-zero (-1) if the option has been set.
Examples
start GeSHi
vb
#if( __FB_OPTION_EXPLICIT__ = 0 )
#error Option Explicit must used With This module
#endifend GeSHi
Differences from QB
- New to FreeBASIC
See also
DimOption Explicit
Back to DocToc