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

insertTypeSpecs() public method

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

Same methods

Paragraph::insertTypeSpecs ( int idx, TypeSpec el, Lock aLock ) : void