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

insertFolders() public method

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

Same methods

Folder::insertFolders ( int idx, Folder el, Lock aLock ) : void