Esempio n. 1
0
 public KeySequence(Devices.DeviceKeys[] keys)
 {
     this.keys = new List <Devices.DeviceKeys>(keys);
     type      = KeySequenceType.Sequence;
     freeform  = new FreeFormObject();
 }
Esempio n. 2
0
 public KeySequence(KeySequence otherKeysequence)
 {
     this.keys     = new List <Devices.DeviceKeys>(otherKeysequence.keys);
     type          = otherKeysequence.type;
     this.freeform = otherKeysequence.freeform;
 }
Esempio n. 3
0
 public KeySequence(FreeFormObject freeform)
 {
     this.keys     = new List <Devices.DeviceKeys>();
     type          = KeySequenceType.FreeForm;
     this.freeform = freeform;
 }
Esempio n. 4
0
 public KeySequence()
 {
     keys     = new List <Devices.DeviceKeys>();
     type     = KeySequenceType.Sequence;
     freeform = new FreeFormObject();
 }