DataDictionary.Generated.SubStep.removeActions C# (CSharp) Method

removeActions() public method

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

Same methods

SubStep::removeActions ( IXmlBBase obj, Lock aLock ) : void