Copyright © 2013-2015 MultiMedia Soft

MidiDjConsole.ProfileInfoStringGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains a string containing information about the DJ Console profile. The current specific information string can be modified through the MidiDjConsole.ProfileInfoStringSet method.

 

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]

MidiDevices.MidiDjConsole.ProfileInfoStringGet (

nStringType as enumProfileInfoStringType

) as String


 

[C#]

public string MidiDjConsole.ProfileInfoStringGet (

enumProfileInfoStringType nStringType

);


 

[C++]

public: string MidiDjConsole.ProfileInfoStringGet (

enumProfileInfoStringType nStringType

);


 

Parameter

Description

 

 

nStringType

Specifies the type of information string to obtain.

Supported values are the following:

Mnemonic constant

Value

Meaning

PROF_INFO_STRING_DEVICE_NAME

0

Name of the MIDI device as reported to the system by the driver of the DJ Console

PROF_INFO_STRING_NAME

1

Name of the profile.

PROF_INFO_STRING_DESCRIPTION

2

Description of the profile.

PROF_INFO_STRING_AUTHOR

3

Author which developed the profile

PROF_INFO_STRING_URL

4

URL to a web page containing eventual further information about the profile

 

 

Return value

 

Value

Meaning

 

 

Empty string

An error occurred (see the LastError property for further error details)

Valid string

String containing the requested information.