File_Field_Zoom_Object - DataDictionary
Returns the object handle of the Zoom object for a table column
Type: Property
Access: Read-Only
Data Type: Integer
Parameters: None
Parameters
| Parameter | Type | Description |
|---|---|---|
| iFile | Integer | Number of table in current filelist |
| iField | Integer | Number of column in the table |
Syntax
Property Integer File_Field_Zoom_Object
| Access Type | Syntax |
|---|---|
| Read Access: | Get File_Field_Zoom_Object to IntegerVariable |
Description
Returns the object handle of the Zoom_Object for a table column. Returns 0 if none exists.
Sample
Handle hZoomObj
Get File_Field_Zoom_Object FILE_FIELD Customer.Customer_Number to hZoomObj
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 file.field name. The File_Field_ version must use the keyword FILE_FIELD to identify the file.field values. 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