C# Class Midi.Message

Base class for all MIDI messages.
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.

SendNow ( ) : void

Sends this message immediately.

Méthodes protégées

Méthode Description
Message ( float time ) : System

Protected constructor.

Method Details

MakeTimeShiftedCopy() public abstract méthode

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

Message() protected méthode

Protected constructor.
protected Message ( float time ) : System
time float The timestamp for this message.
Résultat System

SendNow() public abstract méthode

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