IntegerParameter
Access: -
| Name | Type | Comment |
|---|---|---|
| lowerLimit | DINT | the lower limit of the allowed range |
| upperLimit | DINT | the upper limit of the allowed range |
| unit | UnitString | the physical unit |
| value | DINT | the 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