FieldLength property: Field class

Description

This property returns the length of the field as a number.

This property is read-only.

Example

&MyRec = CreateRecord(Record.BKREC1);
&MyField = &MyRec.GetField(Field.BKNAME);
&length = &MyField.FieldLength;
MessageBox(0, "Field Length", 0, 0, "The field BKREC1.BKNAME is length " |⇒
 &length);