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

MeasureSize() public method

Creates a new musical measure defined as the number of beats per note value.
public MeasureSize ( int beats, NoteValue noteValue ) : System
beats int A representing the beats.
noteValue NoteValue A representing the note value.
return System
        public MeasureSize(int beats, NoteValue noteValue)
        {
            m_beats = beats;
            m_noteValue = noteValue.Duration();
        }

Same methods

MeasureSize::MeasureSize ( int beats, NoteValueBritish noteValue ) : System
MeasureSize::MeasureSize ( int beats, double noteValue ) : System