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
Properties
Channel
The MIDI channel number.
public int Channel { get; init; }
Property Value
IsMuted
Indicates if the channel is muted.
public bool IsMuted { get; init; }