GSF.Media.Music.MeasureSize.ValidateNoteValueAtBeat C# (CSharp) Method

ValidateNoteValueAtBeat() public method

Validates that given note value will fit within this MeasureSize for specified beat.
public ValidateNoteValueAtBeat ( NoteValue noteValue, int beat, int dots ) : void
noteValue NoteValue Named note value to validate.
beat int Beat within in measure where note value is trying to fit.
dots int Dot length extensions to apply to named note value.
return void
        public void ValidateNoteValueAtBeat(NoteValue noteValue, int beat, int dots)
        {
            ValidateNoteValueAtBeat(noteValue.Duration(dots), beat);
        }

Same methods

MeasureSize::ValidateNoteValueAtBeat ( NoteValueBritish noteValue, int beat, int dots ) : void
MeasureSize::ValidateNoteValueAtBeat ( double noteValue, int beat ) : void