Example #1
0
 public UserSig(uint paramNumber, string paramName, ushort?paramUintValue)
 {
     this._number      = paramNumber;
     this._name        = paramName;
     this._ushortvalue = paramUintValue;
     this._type        = eUserSigType.Analog;
 }
Example #2
0
 public UserSig(uint paramNumber, string paramName, string paramStringValue)
 {
     this._number      = paramNumber;
     this._name        = paramName;
     this._stringvalue = paramStringValue;
     this._type        = eUserSigType.Serial;
 }
Example #3
0
 public UserSig(uint paramNumber, string paramName, bool?paramBooleanValue)
 {
     this._number       = paramNumber;
     this._name         = paramName;
     this._booleanvalue = paramBooleanValue;
     this._type         = eUserSigType.Digital;
 }