DataDictionary.Generated.Structure.removeStateMachines C# (CSharp) Method

removeStateMachines() public method

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

Same methods

Structure::removeStateMachines ( IXmlBBase obj, Lock aLock ) : void