SetNextIndex() public method

public SetNextIndex ( int index ) : void
index int
return void
Example #1
0
 public void InsertStep(EventStep s, int pos)
 {
     step = ArrayHelper.Add(s, step);
     s.SetNextIndex(step.Length);
     this.MoveStepTo(pos, step.Length-1);
 }