RowSelection property
- Last UpdatedSep 20, 2024
- 1 minute read
The RowSelection property is a read-write string property that determines if row selection is allowed at run time. The following values are possible:
|
Value |
Description |
|---|---|
|
No |
Operator cannot select rows. |
|
Single |
Operator can only select one row at a time. |
|
Multiple |
Operator can select one or more rows. |
The default value is "Multiple".
Syntax
Result = AlarmClient.RowSelection;
AlarmClient.RowSelection = RwSel;
Example
AlarmClient1.RowSelection = "Multiple";
Remarks
For more information, see Restrict user access to rows and columns.