Record.HasFields
Record.HasFields(record as record, fields as any) as logical
ระบุว่าเรกคอร์ด record
มีเขตข้อมูลที่ระบุใน fields
หรือไม่ โดยแสดงค่าตรรกะ (จริงหรือเท็จ) สามารถระบุค่าหลายเขตข้อมูลได้โดยใช้รายการ
ตรวจสอบว่าระเบียนมีเขตข้อมูล "CustomerID" อยู่หรือไม่
การใช้งาน
Record.HasFields([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "CustomerID")
เอาท์พุท
true
ตรวจสอบว่าเรกคอร์ดมีฟิลด์ "CustomerID" และ "Address" อยู่หรือไม่
การใช้งาน
Record.HasFields([CustomerID = 1, Name = "Bob", Phone = "123-4567"], {"CustomerID", "Address"})
เอาท์พุท
false