AlphaTab.Rendering.Glyphs.TabNoteChordGlyph.AddNoteGlyph C# (CSharp) Метод

AddNoteGlyph() публичный Метод

public AddNoteGlyph ( NoteNumberGlyph noteGlyph, Note note ) : void
noteGlyph NoteNumberGlyph
note AlphaTab.Model.Note
Результат void
        public void AddNoteGlyph(NoteNumberGlyph noteGlyph, Note note)
        {
            _notes.Add(noteGlyph);
            _noteLookup[note.String] = noteGlyph;
            if (_minNote == null || note.String < _minNote.String) _minNote = note;
        }