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

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

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
Результат 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