Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
Syntax
Record.AddField(
record as record,
fieldName as text,
value as any,
optional delayed as nullable logical
) as record
About
Adds a field to a record record, given the name of the field fieldName and the value value.
Example
Add the field Address to the record.
Usage
Record.AddField([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "Address", "123 Main St.")
Output
[CustomerID = 1, Name = "Bob", Phone = "123-4567", Address = "123 Main St."]