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

insertFields() 공개 메소드

Part of the list interface for Fields This insertion function inserts a new element in the collection in Fields
public insertFields ( int idx, DBField el ) : void
idx int the index where the insertion must take place
el DBField the element to insert
리턴 void
        public void insertFields(int idx, DBField el)
        {
            __setDirty(true);
              allFields().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

DBPacket::insertFields ( int idx, DBField el, Lock aLock ) : void