DataDictionary.Generated.StateMachine.insertStates C# (CSharp) Method

insertStates() public method

Part of the list interface for States This insertion function inserts a new element in the collection in States
public insertStates ( int idx, State el ) : void
idx int the index where the insertion must take place
el State the element to insert
return void
        public void insertStates(int idx, State el)
        {
            __setDirty(true);
              allStates().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

StateMachine::insertStates ( int idx, State el, Lock aLock ) : void