Vocaluxe.Lib.Song.CLine.DeleteNote C# (CSharp) Method

DeleteNote() public method

public DeleteNote ( int Index ) : bool
Index int
return bool
        public bool DeleteNote(int Index)
        {
            if (_Notes.Count > Index)
            {
                _Notes.RemoveAt(Index);
                updateMinMaxBeat();
                return true;
            }
            return false;
        }