AlphaTab.Rendering.Utils.MasterBarBounds.AddBeat C# (CSharp) 메소드

AddBeat() 공개 메소드

public AddBeat ( BeatBounds bounds ) : void
bounds BeatBounds
리턴 void
        public void AddBeat(BeatBounds bounds)
        {
            StaveGroupBounds.BoundsLookup.AddBeat(bounds);
        }

Usage Example

예제 #1
0
 public void AddBeat(BeatBounds bounds)
 {
     bounds.BarBounds = this;
     Beats.Add(bounds);
     MasterBarBounds.AddBeat(bounds);
 }