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

insertShortcuts() public method

Part of the list interface for Shortcuts This insertion function inserts a new element in the collection in Shortcuts
public insertShortcuts ( int idx, Shortcut el ) : void
idx int the index where the insertion must take place
el Shortcut the element to insert
return void
        public void insertShortcuts(int idx, Shortcut el)
        {
            __setDirty(true);
              allShortcuts().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

ShortcutFolder::insertShortcuts ( int idx, Shortcut el, Lock aLock ) : void