Beispiel #1
0
 public Setpoint(System.Single value)
 {
     this.value = value;
     this.encodingType = SetpointEncodingType.SPET_FLOAT;
 }
Beispiel #2
0
 public Setpoint(System.Int16 value)
 {
     this.value = value;
     this.encodingType = SetpointEncodingType.SPET_INT16;
 }
Beispiel #3
0
 public Setpoint(System.Double value)
 {
     this.value = value;
     this.encodingType = SetpointEncodingType.SPET_DOUBLE;
 }