DeleteItem method: UserTab collection
Syntax
DeleteItem(UserTabName)
Description
The DeleteItem method deletes the UserTab object identified by UserTabName from the UserTab Collection.
This method is not executed automatically. It is executed only when the parent object is saved.
Parameters
| Parameter | Description |
|---|---|
|
UserTabName |
Specify the name of a UserTab existing in the UserTab collection. |
Returns
A Boolean value: True if the UserTab was deleted, False otherwise.
Example
If Not &MyColl.DeleteItem("Test_UserTab") Then
/* can't delete test data. Do error processing */
End-if;