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

deleteTranslations() public method

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

Same methods

Folder::deleteTranslations ( int idx, Lock aLock ) : void