DataDictionary.Generated.Range.deleteSpecialValues C# (CSharp) Method

deleteSpecialValues() public method

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

Same methods

Range::deleteSpecialValues ( int idx, Lock aLock ) : void