control.removeAt()
- Last UpdatedJun 25, 2024
- 1 minute read
Use removeAt() method to delete a record from a specific position on the Base Form.
Syntax
// B1 is a Base Form object.
control.findById("B1").removeAt(position);
Parameters
|
Parameter |
Description |
|---|---|
|
position |
Specifies the position of the object to be removed. |
Return Value
None.
Example
// Define a Base Form object.
var B1 = control.findById("B1");
// Delete a record from a position on the Base Form.
B1.removeAt(1);
Refer to Delete Record in a Base Form Control for more example(s).