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

removeParagraphs() public method

Part of the list interface for Paragraphs This deletion function removes an element from the collection in Paragraphs If the object given in parameter is not found in the the collection, this function does nothing.
public removeParagraphs ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void
        public void removeParagraphs(IXmlBBase obj)
        {
            int idx = indexOfParagraphs(obj);
              if (idx >= 0) { deleteParagraphs(idx);
            NotifyControllers(null);
               }
        }

Same methods

Paragraph::removeParagraphs ( IXmlBBase obj, Lock aLock ) : void