control.removeRecord()
- Last UpdatedJun 25, 2024
- 1 minute read
Use removeRecord() method to delete a record from the Base Form.
Syntax
// B1 is a Base Form object.
B1.removeRecord(object);
Parameters
|
Parameter |
Description |
|---|---|
|
object |
Record to delete. This parameter is optional. |
Return Value
None.
Example
// Define a Base Form object.
var B1 = control.findById("B1");
// Remove the record from the Base Form.
B1.removeRecord(Object);
Refer to Delete Record in a Base Form Control for more example(s).