Struct Event.CbMuteChannel

Namespace
SpessaSharp.Synthesizer
Assembly
SpessaSharp.dll

This event fires when a channel is muted or unmuted.

public readonly record struct Event.CbMuteChannel : IEquatable<Event.CbMuteChannel>
Implements
Inherited Members

Constructors

CbMuteChannel(int, bool)

This event fires when a channel is muted or unmuted.

public CbMuteChannel(int Channel, bool IsMuted)

Parameters

Channel int

The MIDI channel number.

IsMuted bool

Indicates if the channel is muted.

Properties

Channel

The MIDI channel number.

public int Channel { get; init; }

Property Value

int

IsMuted

Indicates if the channel is muted.

public bool IsMuted { get; init; }

Property Value

bool