C# Class Midi.NoteOffMessage

Note Off message.
Inheritance: NoteMessage
Afficher le fichier Open project: jstnryan/midi-dot-net Class Usage Examples

Méthodes publiques

Méthode Description
MakeTimeShiftedCopy ( float delta ) : Message

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

NoteOffMessage ( Midi.DeviceBase device, Channel channel, Pitch pitch, int velocity, float time ) : System

Constructs a Note Off message.

SendNow ( ) : void

Sends this message immediately.

Method Details

MakeTimeShiftedCopy() public méthode

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

NoteOffMessage() public méthode

Constructs a Note Off message.
public NoteOffMessage ( Midi.DeviceBase device, Channel channel, Pitch pitch, int velocity, float time ) : System
device Midi.DeviceBase The device associated with this message.
channel Channel Channel, 0..15, 10 reserved for percussion.
pitch Pitch The pitch for this note message.
velocity int Velocity, 0..127.
time float The timestamp for this message.
Résultat System

SendNow() public méthode

Sends this message immediately.
public SendNow ( ) : void
Résultat void