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

AddBend() public method

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