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

removeRules() public method

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

Same methods

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