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

deleteParagraphs() public method

Part of the list interface for Paragraphs This deletion function removes an element from the collection in Paragraphs
public deleteParagraphs ( int idx ) : void
idx int the index of the element to remove
return void
        public void deleteParagraphs(int idx)
        {
            __setDirty(true);
              allParagraphs().RemoveAt(idx);
            NotifyControllers(null);
        }

Same methods

Paragraph::deleteParagraphs ( int idx, Lock aLock ) : void