Chapter Contents

Previous

Next
UNSELECT

UNSELECT



Deselects a specified row of a selection list

Category: Extended Table


Syntax
Details
Example
See Also

Syntax

rc=UNSELECT(row);

rc
contains the return code for the operation:
0 successful
[ne]0 not successful

Type: Numeric

row
is the row number to deselect. If an invalid row number is specified, no action is taken.

Type: Numeric


Details

UNSELECT is useful for forcing the deselection of a row. Normally a user selects and deselects a row by pressing ENTER or by clicking on the row with the mouse.

You can use UNSELECT only for selection lists that were built with extended tables in PROGRAM entries. Window controls must use the _unselectRow method. Because you can define extended tables only in SAS/AF software, you cannot use UNSELECT in FSEDIT or FSVIEW programs.

In order for an extended table to be considered a selection list, you must specify the number of selections in the SETROW routine.


Example

Force row 5 to be deselected:

rc=unselect(5);

See Also

ISSEL

NSELECT

SELECT

SELECTED


Chapter Contents

Previous

Next

Top of Page

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