BOOLFALSE keyword
Applies To
Check-box components and grid-column components with the check-box style.
edt_ variable values.
Component property: Data type.
Description
Specifies a string that represents False in Boolean evaluations of the component, overriding the default False value of 0.
Syntax
BOOLFALSE( FalseValue )
Part | Description |
FalseValue | Expression that evaluates to a string, which represents False in Boolean evaluations of the component. |
Remarks
By default WinStudio assigns 1 to a selected check box and 0 to a cleared check box. The BOOLFALSE keyword allows you to override these defaults with values you specify.
Example
This example is a data-type specification for a combo box where N represents False.
DATATYPE(CHAR) LENGTH(1) BOOLTRUE(Y) BOOLFALSE(N)
Related topics