I have many controls on a Front panel, having different units (degC, l/min. etc,...)
I tried to set all control values to 0 using their property (array of control references through a for loop). The problem is that for all controls having "degC" units, the values become -273.1 instead of 0 (0 in base units instead of 0 degC). Is there a way to generically force 0 as a value regardless of the units? Or the only way is to first check each control units and then convert the "0" to their specific units using a case structure?