FIELDDEL(vr, FieldList)
Deletes a number of fields from a multi-field value contained in vr. FieldList is an array expression returning the list of fields to delete. e.g.
vr.a1:=10; vr.a2:=20; vr.a3:=30; vr.a4:=40; vr.a5:=50; FieldDel(vr,['a3','a4']);
The above code deletes fields a3 and a4 from vr.
See more about fields at Using fields,
Go Back