Parameter | Description |
---|---|
iField | Number of the column in the table |
iState | Determines which Boolean state is being checked/assigned for column iField |
Property String Field_CheckBox_Value
Read Access: | Get Field_CheckBox_Value iField iState to StringVariable |
Field_CheckBox_Value returns the symbolic value for a table column for the passed in checkbox state (checked or unchecked). Symbolic values other than 1 or 0 (True or False) can be stored in a table for the checked and unchecked values of a checkbox.
To set the checkbox values for a table column, use Field_CheckBox_Values.
String sStatus Get Field_Checkbox_Value Field Driver.CorrectiveLenses True to sStatus
Many of the DataDictionary methods contain a two variants of the same message: Field_Message and File_Field_Message. For a complete description of these messages please refer to The File Field and Field Keywords.
The Field_ version of a message must use the keyword FIELD to identify the Table.Column name. The File_Field_ version must use the keyword FILE_FIELD to identify the Table.Column name. These should never be mixed!
// When using Field_ message use the Field keyword Get Field_CheckBox_Value Field Customer.Sex to sCheckBoxValue // When using the File_Field_ message use the File_Field keyword Get File_Field_CheckBox_Value of oCustomer_DD File_Field Customer.Sex to sCheckBoxValueSee Also