C# Class Midi.ControlChangeMessage

MidiControl change message.
Inheritance: ChannelMessage
Exibir arquivo Open project: jstnryan/midi-dot-net Class Usage Examples

Public Methods

Method Description
ControlChangeMessage ( Midi.DeviceBase device, Channel channel, Control control, int value, float time ) : System

Construts a Control Change message.

MakeTimeShiftedCopy ( float delta ) : Message

Returns a copy of this message, shifted in time by the specified amount.

SendNow ( ) : void

Sends this message immediately.

Method Details

ControlChangeMessage() public method

Construts a Control Change message.
public ControlChangeMessage ( Midi.DeviceBase device, Channel channel, Control control, int value, float time ) : System
device Midi.DeviceBase The device associated with this message.
channel Channel Channel, 0..15, 10 reserved for percussion.
control Control Control, 0..119
value int Value, 0..127.
time float The timestamp for this message.
return System

MakeTimeShiftedCopy() public method

Returns a copy of this message, shifted in time by the specified amount.
public MakeTimeShiftedCopy ( float delta ) : Message
delta float
return Message

SendNow() public method

Sends this message immediately.
public SendNow ( ) : void
return void