control.removeAll()
- Last UpdatedJun 25, 2024
- 1 minute read
Use removeAll() method to delete all controls from a record on the Base Form.
Syntax
// B1 is a Base Form object.
control.findById("B1").removeAll();
Parameters
None.
Return Value
None.
Example
// Define a Base Form object.
var B1 = control.findById("B1");
// Delete all controls from the record of the Base Form.
B1.removeAll();