DataDictionary.Generated.Paragraph.removeTypeSpecs C# (CSharp) Method

removeTypeSpecs() public method

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

Same methods

Paragraph::removeTypeSpecs ( IXmlBBase obj, Lock aLock ) : void