DataDictionary.Generated.Variable.removeSubVariables C# (CSharp) Method

removeSubVariables() public method

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

Same methods

Variable::removeSubVariables ( IXmlBBase obj, Lock aLock ) : void