Vocaluxe.Lib.Song.CLine.InsertNote C# (CSharp) 메소드

InsertNote() 공개 메소드

public InsertNote ( CNote Note, int Index ) : bool
Note CNote
Index int
리턴 bool
        public bool InsertNote(CNote Note, int Index)
        {
            if (_Notes.Count >= Index)
            {
                _Notes.Insert(Index, Note);
                updateMinMaxBeat(Note);
                return true;
            }
            return false;
        }