SelectedRowChanged event properties
- Last UpdatedNov 26, 2024
- 1 minute read
The properties shown in the SelectedRowChanged event depend on the control that you select in the Event list.

For example, the Queue control displays the following properties:
-
EntId
-
WOId
-
OperId
-
SeqNo
-
Row
The EntId, WOId, OperId, and SeqNo properties return the key information for a job as the Job Queue control is selected for configuration. However, all controls display a Row or Rows property, which contains the information about the selected row. The Cells option in this Row property retrieves data from a specific column in the row object.
However, some of the .NET control grids allow you to select multiple rows. You can use the SelectedRows property for these grids. To access a specific row when multiple rows are selected, use the FactGrid.SelectedRows.Item(0) data type. The (0) in this parameter indicates the first row in the collection.