Record.AddField
เพิ่มเขตข้อมูลลงในระเบียน
Syntax
Record.AddField(
record as record,
fieldName as text,
value as any,
optional delayed as logical
) as record
Remarks
เพิ่มเขตข้อมูลลงในระเบียน record
โดยกำหนดให้มีชื่อเขตข้อมูล fieldName
และค่า value
Examples
Example #1
เพิ่มที่อยู่ฟิลด์เข้าในระเบียน
Record.AddField([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "Address", "123 Main St.")
Result:
[CustomerID = 1, Name = "Bob", Phone = "123-4567", Address = "123 Main St."]
Category
Record.Transformations