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

deleteSpecifications() public method

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

Same methods

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