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

deleteRules() public method

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

Same methods

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