DataDictionary.Generated.Dictionary.removeRequirementSets C# (CSharp) Method

removeRequirementSets() public method

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

Same methods

Dictionary::removeRequirementSets ( IXmlBBase obj, Lock aLock ) : void