DataDictionary.Generated.Specification.insertChapters C# (CSharp) Метод

insertChapters() публичный Метод

Part of the list interface for Chapters This insertion function inserts a new element in the collection in Chapters
public insertChapters ( int idx, Chapter el ) : void
idx int the index where the insertion must take place
el Chapter the element to insert
Результат void
        public void insertChapters(int idx, Chapter el)
        {
            __setDirty(true);
              allChapters().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

Specification::insertChapters ( int idx, Chapter el, Lock aLock ) : void