DataDictionary.Generated.Folder.removeTranslations C# (CSharp) Method

removeTranslations() public method

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

Same methods

Folder::removeTranslations ( IXmlBBase obj, Lock aLock ) : void