Column_Combo_Entry_State - DfBaseEntryList
Determines if column allows entry into the cell or only allows selection of values from list
Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None
Parameters
| Parameter | Type | Description |
|---|---|---|
| iColumn | integer | The column number (0-based) |
Syntax
Property Boolean Column_Combo_Entry_State
| Access Type | Syntax |
|---|---|
| Read Access: | Get Column_Combo_Entry_State to BooleanVariable |
| Write Access: | Set Column_Combo_Entry_State to BooleanVariable/Value |
Description
Determines if the column allows entry into the cell, or if values can only be selected from the available values in the combo form's dropdown list.
Sample
This sample allows users to enter data that is not available in the dropdown list of the combo form in column 2 of a grid object.
set Column_Combo_Entry_State 2 to True
Sample
This sample disallows users to enter data and ensures that values can only be selected from the values available in the dropdown list of the combo form in column 2 of a grid object.
set Column_Combo_Entry_State 2 to False
Default is false