Skip to main content
Version: 20 R7 BETA

GET FIELD PROPERTIES

GET FIELD PROPERTIES ( fieldPtr | tableNum {; fieldNum}; fieldType {; fieldLength {; indexed {; unique {; invisible}}}} )

ParameterTypeDescription
fieldPtr | tableNumPointer, LongintTable number or Field pointer
fieldNumIntegerField number if Table number is passed
fieldTypeIntegerType of field
fieldLengthIntegerLength of field, if Alphanumeric
indexedBooleanTrue = Indexed, False = Non indexed
uniqueBooleanTrue = Unique, False = Non unique
invisibleBooleanTrue = Invisible, False = Visible

Description

The GET FIELD PROPERTIES command returns information about the field specified by fieldPtr or by tableNum and fieldNum.

You either pass:

  • the table and field numbers in tableNum and fieldNum, or
  • a pointer to the field in fieldPtr.

After the call:

  • fieldType returns the type of the field. The fieldType variable parameter can take a value provided by the following predefined constants (Field and Variable Types theme):
ConstantTypeValue
Is alpha fieldInteger0
Is BLOBInteger30
Is BooleanInteger6
Is dateInteger4
Is floatInteger35
Is integerInteger8
Is integer 64 bitsInteger25
Is longintInteger9
Is objectInteger38
Is pictureInteger3
Is realInteger1
Is subtableInteger7
Is textInteger2
Is timeInteger11
  • The fieldLen parameter returns the length of the field, if the field is Alphanumeric (i.e., fieldType=Is alpha field). The value of fieldLen is meaningless for the other field types.
  • The indexed parameter returns True is the field is indexed, and False if not. The value of indexed is meaningful only for Alphanumeric, Integer, Long Integer, Real, Date, Time, and Boolean fields.
  • The unique parameter returns True if the field is set to “Unique”, else False.
  • The invisible parameter returns True if the field is set to “Invisible”, else False. The Invisible attribute can be used to hide a given field in 4D standard editor (label, charts...).

Example 1

This example sets the variables vType, vLength, vIndex, vUnique and vInvisible to the properties for the third field of the first table:

 GET FIELD PROPERTIES(1;3;vType;vLength;vIndex;vUnique;vInvisible)

Example 2

This example sets the variables vType, vLength, vIndex, vUnique and vInvisible to the properties for the field named [Table3]Field2:

 GET FIELD PROPERTIES(->[Table3]Field2;vType;vLength;vIndex;vUnique;vInvisible)

See also

Field
Field name
SET INDEX