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

removeStates() public method

Part of the list interface for States This deletion function removes an element from the collection in States If the object given in parameter is not found in the the collection, this function does nothing.
public removeStates ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void
        public void removeStates(IXmlBBase obj)
        {
            int idx = indexOfStates(obj);
              if (idx >= 0) { deleteStates(idx);
            NotifyControllers(null);
               }
        }

Same methods

StateMachine::removeStates ( IXmlBBase obj, Lock aLock ) : void