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

deleteStates() public method

Part of the list interface for States This deletion function removes an element from the collection in States
public deleteStates ( int idx ) : void
idx int the index of the element to remove
return void
        public void deleteStates(int idx)
        {
            __setDirty(true);
              allStates().RemoveAt(idx);
            NotifyControllers(null);
        }

Same methods

StateMachine::deleteStates ( int idx, Lock aLock ) : void