AlphaTab.Rendering.Glyphs.BeatContainerGlyph.BeatContainerGlyph C# (CSharp) Method

BeatContainerGlyph() public method

public BeatContainerGlyph ( Beat beat, VoiceContainerGlyph voiceContainer, bool useLayoutingInfo = false ) : System
beat AlphaTab.Model.Beat
voiceContainer VoiceContainerGlyph
useLayoutingInfo bool
return System
        public BeatContainerGlyph(Beat beat, VoiceContainerGlyph voiceContainer, bool useLayoutingInfo = false)
            : base(0, 0)
        {
            Beat = beat;
            Ties = new FastList<Glyph>();
            VoiceContainer = voiceContainer;
            UseLayoutingInfo = useLayoutingInfo;
        }