GetPreBeatSize() public method

public GetPreBeatSize ( Beat beat ) : float
beat AlphaTab.Model.Beat
return float
 public void ApplyLayoutingInfo(BarLayoutingInfo info)
 {
     if (UseLayoutingInfo)
     {
         PreNotes.Width = info.GetPreBeatSize(Beat);
         OnNotes.Width = info.GetOnBeatSize(Beat);
         OnNotes.X = PreNotes.X + PreNotes.Width;
         OnTimeX = OnNotes.X + OnNotes.Width / 2;
     }
 }