This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v19.8
OBJECT SET ENTERABLE
|
OBJECT SET ENTERABLE ( {* ;} object ; enterable ) | ||||||||
Parameter | Type | Description | ||||||
* | Operator |
![]() |
If specified, Object is an Object Name (String) If omitted, Object is a Field or a Variable | |||||
object | Form object |
![]() |
Object Name (if * is specified), or Table or Field or Variable (if * is omitted) | |||||
enterable | Boolean |
![]() |
True for enterable; False for non-enterable | |||||
The OBJECT SET ENTERABLE command makes the form objects specified by object either enterable or non-enterable.
If you specify the optional * parameter, you indicate an object name (a string) in object. If you omit the optional * parameter, you indicate a table, field or variable in object. In this case, specify a table, field or variable reference (field or variable objects only) instead of a string. For more information about object names, see the Object Properties section.
Using this command is equivalent to selecting Enterable for a field or variable in the Form Editor’s Property List window. This command works in subforms only if it is in the form method of the subform.
When the entryArea is enterable (TRUE), the user can move the cursor into the area and enter data. When the entryArea is non-enterable (FALSE), the user cannot move the cursor into the area and cannot enter data.
The OBJECT SET ENTERABLE command can also be used to enable the “Enter in List” mode by programming for subforms and list forms displayed using the MODIFY SELECTION and DISPLAY SELECTION commands:
Making an object non-enterable does not prevent you from changing its value programmatically.
Note: To make a list box cell non-enterable, you pass the value -1 to $0 in the On Before Data Entry event, see Managing entry.
The following example sets a shipping field, depending on the weight of the shipment. If the shipment is 1 ounce or less, then the shipper is set to US Mail and the field is set to be non-enterable. Otherwise, the field is set to be enterable.
If([Shipments]Weight<=1)
[Shipments]Shipper:="US Mail"
OBJECT SET ENTERABLE([Shipments]Shipper;False)
Else
OBJECT SET ENTERABLE([Shipments]Shipper;True)
End if
Here is the object method of a checkbox located in the header of a list in order to control the Enter in List mode:
C_BOOLEAN(bEnterable)
OBJECT SET ENTERABLE([Table1];bEnterable)
Product: 4D
Theme: Objects (Forms)
Number:
238
Modified: 4D 2004
Renamed: 4D v12 (SET ENTERABLE)
4D Language Reference ( 4D v19)
4D Language Reference ( 4D v19.1)
4D Language Reference ( 4D v19.4)
4D Language Reference ( 4D v19.5)
4D Language Reference ( 4D v19.6)
4D Language Reference ( 4D v19.7)
4D Language Reference ( 4D v19.8)