DataDictionary.Generated.RuleCheckDisabling.removeDisabledRuleChecks C# (CSharp) Method

removeDisabledRuleChecks() public method

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

Same methods

RuleCheckDisabling::removeDisabledRuleChecks ( IXmlBBase obj, Lock aLock ) : void