DataDictionary.Generated.DBPacket.removeFields C# (CSharp) Method

removeFields() public method

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

Same methods

DBPacket::removeFields ( IXmlBBase obj, Lock aLock ) : void