AlphaTab.Importer.MusicXml2Importer.ApplyNoteStringFrets C# (CSharp) Method

ApplyNoteStringFrets() private method

private ApplyNoteStringFrets ( AlphaTab.Model.Track track, Beat beat, Note note, int fullNoteValue ) : void
track AlphaTab.Model.Track
beat AlphaTab.Model.Beat
note AlphaTab.Model.Note
fullNoteValue int
return void
        private void ApplyNoteStringFrets(Track track, Beat beat, Note note, int fullNoteValue)
        {
            note.String = FindStringForValue(track, beat, fullNoteValue);
            note.Fret = fullNoteValue - Note.GetStringTuning(track, note.String);
        }