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

removeShortcuts() public method

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

Same methods

ShortcutFolder::removeShortcuts ( IXmlBBase obj, Lock aLock ) : void