MidiControlChangeMessage(Byte, Byte, Byte) 构造函数

定义

创建新的 MidiControlChangeMessage 对象。

public:
 MidiControlChangeMessage(byte channel, byte controller, byte controlValue);
 MidiControlChangeMessage(byte const& channel, byte const& controller, byte const& controlValue);
public MidiControlChangeMessage(byte channel, byte controller, byte controlValue);
function MidiControlChangeMessage(channel, controller, controlValue)
Public Sub New (channel As Byte, controller As Byte, controlValue As Byte)

参数

channel
Byte

byte

此消息适用的从 0 到 15 的通道。

controller
Byte

byte

从 0 到 127 接收此消息的控制器。

controlValue
Byte

byte

要应用于 控制器的介于 0-127 的值。

适用于