FormTreeControl.deleteAll Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deletes all items from the form tree control.
public:
virtual bool deleteAll();
public virtual bool deleteAll ();
abstract member deleteAll : unit -> bool
override this.deleteAll : unit -> bool
Public Overridable Function deleteAll () As Boolean
Returns
true if all items were successfully deleted; otherwise, false.
Remarks
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();