File_Field_Option_Clear - DataDictionary

Obsolete Clears a DD field option

Type: Procedure Set

Obsolete


Data Type: Integer

Parameters: integer iFile integer iField Integer iOptions

ParameterDescription
iFileNumber of table in current filelist
iFieldNumber of field in the table
iOptionsThe option to get/set


Syntax
Procedure Set File_Field_Option_Clear integer iFile integer iField Integer iOptions


Description

Obsolete

Note: As of version 14.1, the Field_Option_Clear and File_Field_Option_Clear properties are obsolete and have been replaced with Field_Option and File_Field_Option. This message and the following documentation exists for compatibility reasons only.


File_Field_Option_Clear is used to clear a DD field option. Any option change will be immediately reflected in all DEOs using this field. See File_field_Option for more information.

Set File_Field_Option_Clear of hDD iFile iField to DD_NoPut
Set File_Field_Option_Clear of hDD FILE_FIELD FileName.FieldName to DD_NoPut


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
Set Field_Option_Clear FIELD Customer.Name to DD_NoPut

// When using the File_Field_ message use the FILE_FIELD keyword
Set File_Field_Option_Clear of oCustomer_DD FILE_FIELD Customer.Name to DD_NoPut

See Also

Changing Field Properties within a DD Object | Changing Field Option Settings Dynamically | Field_Option_Clear | File_Field_Option_Toggle