DataDictionary.Generated.Specification.removeChapters C# (CSharp) Method

removeChapters() public method

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

Same methods

Specification::removeChapters ( IXmlBBase obj, Lock aLock ) : void