public PianoNote(long Tick, BalthasarLib.PianoRollWindow.PianoProperties.NoteType NoteType, PitchValuePair PitchValue, string Lyric)
 {
     this.Lyric  = Lyric;
     this.pvp    = PitchValue;
     this.Tick   = Tick;
     this.Length = (uint)(SemibreveLength / (uint)NoteType);
 }
 public PianoNote(long Tick, BalthasarLib.PianoRollWindow.PianoProperties.NoteType NoteType, long Length, uint NoteNumber, int PitchWheel, string Lyric)
 {
     this.Lyric  = Lyric;
     this.pvp    = new PitchValuePair(NoteNumber, PitchWheel);
     this.Tick   = Tick;
     this.Length = (uint)(SemibreveLength / (uint)NoteType);
 }
 public PianoNote(long Tick, BalthasarLib.PianoRollWindow.PianoProperties.NoteType NoteType, long Length, double PitchValue)
 {
     this.pvp    = new PitchValuePair(PitchValue);
     this.Tick   = Tick;
     this.Length = (uint)(SemibreveLength / (uint)NoteType);
 }