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

insertParagraphs() public method

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

Same methods

Paragraph::insertParagraphs ( int idx, Paragraph el, Lock aLock ) : void