*Boolean()

Creates a boolean entity.

Syntax

*Boolean(boolean_name,"boolean_label", edit_option )

Arguments

boolean_name
The variable name of the boolean entity.
Data type: varname
boolean_label
The descriptive label of the boolean entity.
Data type: label
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 .
Data type: keyword

Example

*DefineDataSet(ds_def)
 
 
*Boolean(debug_info, "Debug Information", EDIT)
 
*EndDefine()

Context

*BeginMdl()

*DefineAnalysis()

*DefineDataSet()

*DefineSystem()

*DefineTable()

Properties

Table 1.
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.