File_Field_Status_Help - DataDictionary
Gets/Sets status-line help text for the passed table column
Type: Property
Access: Read-Only
Data Type: String
Parameters: None
Parameters
| Parameter | Type | Description |
|---|---|---|
| iFile | Integer | Number of table in the filelist |
| iField | Integer | Number of the column in the table |
Syntax
Property String File_Field_Status_Help
| Access Type | Syntax |
|---|---|
| Read Access: | Get File_Field_Status_Help to StringVariable |
Description
The File_Field_Status_Help property is used to get/set status-line help text for the passed table column.
Sample
Set File_Field_Status_Help FILE_FIELD Customer.Address to "Street Address"
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 values. These should never be mixed!
// When using Field_ message use the FIELD keyword
Get Field_Current_Value FIELD Customer.Name to sName
// When using the File_Field_ message use the FILE_FIELD keyword
Get File_Field_Current_Value of oCustomer_DD FILE_FIELD Customer.Name to sName
See Also