Previous Page | Next Page

SAS Component Language Dictionary

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

Previous Page | Next Page | Top of Page