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

Channel int

The MIDI channel number.

Controller Midi.CC

The controller number.

Value int

The value of the controller.

Properties

Channel

The MIDI channel number.

public int Channel { get; init; }

Property Value

int

Controller

The controller number.

public Midi.CC Controller { get; init; }

Property Value

Midi.CC

Value

The value of the controller.

public int Value { get; init; }

Property Value

int