Beispiel #1
0
 public bool SetInjectStep(int index, InjectParameter para)
 {
     if (index >=0 && index < injectSteps.Count)
     {
         injectSteps[index].Copy(para);
         return true;
     }
     else
     {
         return false;
     }
 }
Beispiel #2
0
 public void Copy(InjectParameter para)
 {
     this.phaseType = para.phaseType;
     this.flowRate = para.flowRate;
     this.volume = para.volume;
     this.time = para.time;
     this.pauseTime = para.pauseTime;
 }