DataDictionary.Generated.DBPacket.removeFields C# (CSharp) 메소드

removeFields() 공개 메소드

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
리턴 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