示例#1
0
 /// <summary>
 /// Finds the value of the first time signature that appears before the specified tick position.
 /// </summary>
 /// <param name="position">The tick position</param>
 /// <returns>Returns the value of the time signature that was found.</returns>
 public TimeSignature GetPrevTS(uint position)
 {
     return(SongObjectHelper.GetPrevious(timeSignatures, position));
 }
示例#2
0
 public Section GetPrevSection(uint position)
 {
     return(SongObjectHelper.GetPrevious(sections, position));
 }
示例#3
0
 /// <summary>
 /// Finds the value of the first bpm that appears before or on the specified tick position.
 /// </summary>
 /// <param name="position">The tick position</param>
 /// <returns>Returns the value of the bpm that was found.</returns>
 public BPM GetPrevBPM(uint position)
 {
     return(SongObjectHelper.GetPrevious(bpms, position));
 }