Chapter Contents

Previous

Next
List Box: _delete

List Box: _delete



Deletes one or more items from a list box


Syntax
Details
Example

Syntax

CALL NOTIFY (list-box-name, '_delete'<, start-row<, num-items>>);

Argument Type Description
start-row
N specifies the row to start deleting from. The default is the first row. A value of -n starts deleting at the nth item from the bottom of the list.
num-items
N specifies the number of items to delete. The default is 1.


Details

The start-row argument specifies the actual row in the overall list, not its position in the displayed list.


Example

_delete deletes the 3rd, 4th, and 5th items from LISTBOX1:

   call notify('listbox1','_delete_',3,3);


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.