Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Deletes all items from the form tree control.
Syntax
public boolean deleteAll()
Run On
Client
Return Value
Type: boolean
true if all items were successfully deleted; otherwise, false.
Examples
The following example shows how to delete all items from a form tree control.
// The ftc variable was a previously allocated
// FormTreeControl variable.
boolean bDelete;
bDelete = ftc.deleteAll();