AlphaTab.Audio.Generator.MidiFileHandler.AddControlChange C# (CSharp) Method

AddControlChange() public method

public AddControlChange ( int track, int tick, byte channel, byte controller, byte value ) : void
track int
tick int
channel byte
controller byte
value byte
return void
        public void AddControlChange(int track, int tick, byte channel, byte controller, byte value)
        {
            AddEvent(track, tick, new MidiMessage(new[] { MakeCommand(0xB0, channel), FixValue(controller), FixValue(value) }));
        }