Link Search Menu Expand Document

SSpread.SelModeSelected Property

Set whether to select the row indicated by the Row property when the OperationMode property is $OperationModeMulti (multi-select mode) or $ OperationModeExtended (extended multiple-select mode).

Specify $TRUE to select it, and $FALSE otherwise.

The number of selected rows can be obtained with the SelectionCount property. The selected line number can be obtained with the GetMultiSelItem method.

Example of usage

OperationMode = $OperationModeMulti;
Row = 2;
SelModeSelected = $TRUE;
Row = 4;
SelModeSelected = $TRUE;
Row = 6;
SelModeSelected = $TRUE;

Related Items
OperationMode, SelectionCount properties
GetMultiSelItem method