Exemplo n.º 1
0
 public Control(int controlID, CtrlInputOutput controlDirection, CtrlType controlType, int highValue, int lowValue, int curValue, String ControlName)
 {
     _controlID        = controlID;
     _controlDirection = (int)controlDirection;
     _controlType      = (int)controlType;
     _highValue        = highValue;
     _lowValue         = lowValue;
     _curValue         = curValue;
     _controlName      = ControlName;
 }
Exemplo n.º 2
0
 public Control(int controlID, CtrlInputOutput controlDirection, CtrlType controlType, int highValue, int lowValue, int curValue, String ControlName, bool KeepAnalytics)
 {
     _controlID        = controlID;
     _controlDirection = controlDirection;
     _controlType      = controlType;
     _highValue        = highValue;
     _lowValue         = lowValue;
     _curValue         = curValue;
     _controlName      = ControlName;
     _KeepAnalytics    = KeepAnalytics;
 }
Exemplo n.º 3
0
 public static Control CreateControl(CtrlInputOutput controlDirection, CtrlType controlType, String controlName)
 {
     return(CreateControl(controlDirection, controlType, controlName, 1, 0, 0));
 }
Exemplo n.º 4
0
 public static Control CreateControl(CtrlInputOutput controlDirection, CtrlType controlType, String controlName, int highValue, int lowValue, int curValue)
 {
     return(new Control(0, controlDirection, controlType, highValue, lowValue, curValue, controlName));
 }
Exemplo n.º 5
0
 public UnityControl(int controlID, CtrlInputOutput controlDirection, CtrlType controlType, int highValue, int lowValue, int curValue, String ControlName)
     : base(controlID, controlDirection, controlType, highValue, lowValue, curValue, ControlName, false)
 {
 }
Exemplo n.º 6
0
 public BufferControl(int controlID, CtrlInputOutput controlDirection, CtrlType controlType, int highValue, int lowValue, int curValue, String ControlName, bool sendAnalytics)
     : base(controlID, controlDirection, controlType, highValue, lowValue, curValue, ControlName, sendAnalytics)
 {
 }
Exemplo n.º 7
0
 public static Control CreateControl(CtrlInputOutput controlDirection, CtrlType controlType, String controlName, bool KeepAnalytics = true)
 {
     return(CreateControl(controlDirection, controlType, controlName, 1, 0, 0, KeepAnalytics));
 }