Struct Event.CbControllerChange
- Namespace
- SpessaSharp.Synthesizer
- Assembly
- SpessaSharp.dll
This event fires when a controller is changed.
public readonly record struct Event.CbControllerChange : IEquatable<Event.CbControllerChange>
- Implements
- Inherited Members
Constructors
CbControllerChange(int, CC, int)
This event fires when a controller is changed.
public CbControllerChange(int Channel, Midi.CC Controller, int Value)
Parameters
ChannelintThe MIDI channel number.
ControllerMidi.CCThe controller number.
ValueintThe value of the controller.
Properties
Channel
The MIDI channel number.
public int Channel { get; init; }
Property Value
Controller
The controller number.
public Midi.CC Controller { get; init; }
Property Value
Value
The value of the controller.
public int Value { get; init; }