DataDictionary.Generated.SourceText.deleteComments C# (CSharp) Method

deleteComments() public method

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

Same methods

SourceText::deleteComments ( int idx, Lock aLock ) : void