Skip to main content

IntegerParameter

Access: -

NameTypeComment
lowerLimitDINTthe lower limit of the allowed range
upperLimitDINTthe upper limit of the allowed range
unitUnitStringthe physical unit
valueDINTthe actual parameter value

Code

Declaration

TYPE IntegerParameter :
STRUCT
(* the lower limit of the allowed range *)
lowerLimit :DINT := 0;
(* the upper limit of the allowed range *)
upperLimit :DINT := 0;
(* the physical unit *)
unit :UnitString;
(* the actual parameter value *)
value :DINT := 0;
END_STRUCT
END_TYPE