DataDictionary.Generated.ShortcutFolder.deleteFolders C# (CSharp) Method

deleteFolders() public method

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

Same methods

ShortcutFolder::deleteFolders ( int idx, Lock aLock ) : void