Field_Zoom_Object - DataDictionary
Get/sets the object Id of the Zoom_Object for a table column, such as a lookup (selection) list
Type: Property
Access: Read/Write
Data Type: Integer
Parameters: None
Parameters
| Parameter | Type | Description |
|---|---|---|
| iField | Integer | Number of the column in the table |
Syntax
Property Integer Field_Zoom_Object
| Access Type | Syntax |
|---|---|
| Read Access: | Get Field_Zoom_Object to IntegerVariable |
| Write Access: | Set Field_Zoom_Object to IntegerVariable/Value |
Description
Field_Zoom_Object get/sets the object Id of the Zoom_Object for a table column, such as a lookup (selection) list. The Prompt_Object is the object that pops up when the kZoom key (Alt+F9) is pressed.
See Field_Prompt_Object for more information on pop up objects connected to table columns.
Sample
Set Field_Zoom_Object Field Customer.Customer_Number to (Customer_sl(Self))
File and File_Field Interfaces
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 Field and File_Field DD Interfaces.
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_Zoom_Object Field Customer.Name to iZoomObject
// When using the File_Field_ message use the FILE_FIELD keyword
Get File_Field_Zoom_Object of oCustomer_DD File_Field Customer.Name to iZoomObject
See Also