Chapter Contents

Previous

Next
List Box: _getText

List Box: _getText



Returns the text of the item in the specified row of a list box


Syntax
Example

Syntax

CALL NOTIFY (list-box-name, '_getText', row-number, item-text);

Argument Type Description
row-number
N specifies the row number for which to return the text
item-text
C returns the text in the specified row


Example

_getText returns the text in row 3 of LISTBOX1 to the variable TEXT:

length text $ 24;
call notify('listbox1','_get_text_',3,text);
_msg_='Text= ' || text;


Chapter Contents

Previous

Next

Top of Page

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