home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Book HomeMastering Perl/TkSearch this book

7.8. Deleting Items

You can use the delete method to delete items from the Listbox:

$lb->delete(firstindex [, lastindex ]);

The first argument is the index from which to start deleting. To delete more than just that one item, you can add a second index. The firstindex must be less than or equal to the lastindex specified. To delete all the elements in the Listbox:

$lb->delete(0, 'end');

To delete the last item in the Listbox:

$lb->delete('end');


Library Navigation Links

Copyright © 2002 O'Reilly & Associates. All rights reserved.