DataDictionary.Generated.Dictionary.insertSpecifications C# (CSharp) Method

insertSpecifications() public method

Part of the list interface for Specifications This insertion function inserts a new element in the collection in Specifications
public insertSpecifications ( int idx, Specification el ) : void
idx int the index where the insertion must take place
el Specification the element to insert
return void
        public void insertSpecifications(int idx, Specification el)
        {
            __setDirty(true);
              allSpecifications().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

Dictionary::insertSpecifications ( int idx, Specification el, Lock aLock ) : void