DataDictionary.Generated.Dictionary.deleteTests C# (CSharp) Method

deleteTests() public method

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

Same methods

Dictionary::deleteTests ( int idx, Lock aLock ) : void