Skip to main content
Version: Next

GET FIELD PROPERTIES

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

ParameterTypeDescription
fieldPtr | tableNumPointer, Longint🡒Table number or Field pointer
fieldNumLongint🡒Field number if Table number is passed
fieldTypeLongint🡘Type of field
fieldLengthLongint🡘Length of field, if Alphanumeric
indexedBoolean🡘True = Indexed, False = Non indexed
uniqueBoolean🡘True = Unique, False = Non unique
invisibleBoolean🡘True = 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):
    | Constant | Type | Value |
    | ------------------ | ------- | ----- |
    | Is alpha field | Longint | 0 |
    | Is BLOB | Longint | 30 |
    | Is Boolean | Longint | 6 |
    | Is date | Longint | 4 |
    | Is float | Longint | 35 |
    | Is integer | Longint | 8 |
    | Is integer 64 bits | Longint | 25 |
    | Is longint | Longint | 9 |
    | Is object | Longint | 38 |
    | Is picture | Longint | 3 |
    | Is real | Longint | 1 |
    | Is subtable | Longint | 7 |
    | Is text | Longint | 2 |
    | Is time | Longint | 11 |
  • 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