|
SelectBySpecificPositions |
This function selects a group of specific row or columns by their index numbers.
Syntax:
SelectBySpecificPositions, axis, count, commaDelimitedIndexes
Parameters:axis – which axis will be used { Row, Column }
count – the number of elements to select
commaDelimitedIndexes – a comma-separated list of row or column indexes
Examples:
SelectBySpecificPositions,Row,3,0,4,9
Selects rows 0, 4 and 9.
Comments:
The list of positions does not need to be sequential, nor start from a particular row.
In this function, the selection is inverted, so if something is already selected, it is un-selected.
|