C# 클래스 Midi.PitchBendMessage

Pitch Bend message.
상속: ChannelMessage
파일 보기 프로젝트 열기: jstnryan/midi-dot-net

공개 메소드들

메소드 설명
MakeTimeShiftedCopy ( float delta ) : Message

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

PitchBendMessage ( Midi.DeviceBase device, Channel channel, int value, float time ) : System

Constructs a Pitch Bend message.

SendNow ( ) : void

Sends this message immediately.

메소드 상세

MakeTimeShiftedCopy() 공개 메소드

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

PitchBendMessage() 공개 메소드

Constructs a Pitch Bend message.
public PitchBendMessage ( Midi.DeviceBase device, Channel channel, int value, float time ) : System
device Midi.DeviceBase The device associated with this message.
channel Channel Channel, 0..15, 10 reserved for percussion.
value int Pitch bend value, 0..16383, 8192 is centered.
time float The timestamp for this message.
리턴 System

SendNow() 공개 메소드

Sends this message immediately.
public SendNow ( ) : void
리턴 void