Struct Event.CbPolyPressure
- Namespace
- SpessaSharp.Synthesizer
- Assembly
- SpessaSharp.dll
This event fires when a polyphonic pressure is changed.
public readonly record struct Event.CbPolyPressure : IEquatable<Event.CbPolyPressure>
- Implements
- Inherited Members
Constructors
CbPolyPressure(int, int, int)
This event fires when a polyphonic pressure is changed.
public CbPolyPressure(int Channel, int MidiNote, int Pressure)
Parameters
ChannelintThe MIDI channel number.
MidiNoteintThe MIDI note number.
PressureintThe pressure value.
Properties
Channel
The MIDI channel number.
public int Channel { get; init; }
Property Value
MidiNote
The MIDI note number.
public int MidiNote { get; init; }
Property Value
Pressure
The pressure value.
public int Pressure { get; init; }