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

Channel int

The MIDI channel number.

MidiNote int

The MIDI note number.

Pressure int

The pressure value.

Properties

Channel

The MIDI channel number.

public int Channel { get; init; }

Property Value

int

MidiNote

The MIDI note number.

public int MidiNote { get; init; }

Property Value

int

Pressure

The pressure value.

public int Pressure { get; init; }

Property Value

int