ValueList.Delete
Syntax:
Parameters:
<Item> (required)
Item to be deleted or its index.
Description:
Availability:
Example:
// Deleting by index in the list PriceTypesList.Delete(0); // Deleting by item FoundItem = PriceTypesList.FindByValue(SelValue); If FoundItem <> Undefined Then PriceTypesList.Delete(FoundItem); Else Message("Value not found!"); EndIf; |