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