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

deleteShortcuts() public method

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

Same methods

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