Copyright © 2013-2015 MultiMedia Soft

MidiDjConsoleEventUnmapped event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs when a manual action (for example the pressing of a button, the movement of a slider or of a jog wheel) is performed on a console's physical control which has not been mapped into the DJ Console profile loaded inside the instance of the component or when the reception of events specific for mapped controls has been disabled through a call to the MidiDjConsole.EnableMappedEvents method.

 

Events are sent to the container application only if a connection has been established between the instance of the component and the DJ Console through a call to the MidiDjConsole.Connect method.

 

For further details about input events management see the How to synchronize the container application with the control tutorial.

For further details about interfacing with MIDI DJ Consoles see the MidiDjConsole object section and the How to manage MIDI DJ consoles tutorial.

 

 

Syntax

 

[Visual Basic]

MidiDjConsoleEventUnmapped (

nMidiCommand as Integer,

nMidiChannel as Integer,

nMidiData1 as Integer,

nMidiData2 as Integer,

nTimeStamp as Long

)


 

[C++]

void MidiDjConsoleEventUnmapped (

short nMidiCommand,

short nMidiChannel,

short nMidiData1,

short nMidiData2,

long nTimeStamp

);


 

 

Parameter

Description

 

 

nMidiCommand

Number representing the MIDI command

nMidiChannel

Number representing the MIDI channel

nMidiData1

Number representing the first parameter related to the MIDI event

nMidiData2

Number representing the second parameter related to the MIDI event

nTimeStamp

The time stamp of the event expressed in milliseconds elapsed from the moment in which the MIDI input device of the DJ Console was opened through a call to the MidiDevices.Open method.