getboolvalue
getboolvalue |
Purpose
Get boolean contained within
basicvalue
Synopsis
function xreflect~getboolvalue( bv:xreflect~basicvalue ):boolean
Argument
bv
|
The basicvalue to query
|
Return value
The boolean value from the basicvalue
Example
The following:
myval := basicvalue(true) writeln('boolvalue=',myval.boolvalue)
produces this output:
boolvalue=true
Further information
If the referenced
basicvalue does not contain a boolean, a reasonable type conversion will be applied.
Related topics