Symbol in display

Hi Manh,

  1. To acquire information about an AlarmWindow, the same method applied to DataGrids can be used:

For column names, number of columns and number of rows:

image1

For the value of a specific cell:

In this case, @Tag.text will get the value of cell(0,20).
Keep in mind that the column index used in “columnSelect”, is according to the AlarmWindow Configuration page.

  1. The ComboBox object works as a “class” in C#, its events are represented by the lightning symbol:

image3

If you want to handle ComboBox events, you have to associate an event handling method with the event.
In this example below, we are associating the “SelectionChanged” event with its handler:

image4

Then you have to write the code you want to be executed when the event occurs:

image5

Bests,
Tatsoft Team.