Aracılığıyla paylaş


FormTreeControl.deleteAll Method

Definition

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();

Applies to