EventStep.SetNextIndex C# (CSharp) Method

SetNextIndex() public method

public SetNextIndex ( int index ) : void
index int
return void
    public void SetNextIndex(int index)
    {
        this.next = index;
    }

Usage Example

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);
 }