*Boolean()
Creates a boolean entity.
Syntax
*Boolean(boolean_name,"boolean_label", edit_option )
Arguments
- boolean_name
- The variable name of the boolean entity.
- boolean_label
- The descriptive label of the boolean entity.
- edit_option
- A keyword which specifies whether or not this data member entity is editable in the MotionView graphical user interface. Valid values are: EDIT or NO_EDIT .
Example
*DefineDataSet(ds_def)
*Boolean(debug_info, "Debug Information", EDIT)
*EndDefine()
Context
Properties
Property | Returns Data Type | Description |
---|---|---|
label | string | The descriptive label of the boolean entity. |
state | boolean | Control state (TRUE or FALSE). |
value | boolean | The value of the boolean entity. |
varname | string | The variable name of the boolean entity. |
Comments
Boolean entities may be created in dataset or table record definitions. Variables created in *Boolean() statements can be assigned values in *SetBoolean() statements.