Copyright © 2013-2015 MultiMedia Soft

MidiDjConsole.ProfileItemInfoStringGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains a string containing information about a specific item contained inside the DJ Console profile.

 

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.ProfileItemInfoStringGet (

strItemName as String,

nStringType as enumProfileItemInfoStringType

) as String


 

[C#]

public string MidiDjConsole.ProfileItemInfoStringGet (

string strItemName,

enumProfileItemInfoStringType nStringType

);


 

[C++]

public: string MidiDjConsole.ProfileItemInfoStringGet (

string strItemName,

enumProfileItemInfoStringType nStringType

);


 

Parameter

Description

 

 

strItemName

String containing the name of the item.

nStringType

Specifies the type of information string to obtain.

Supported values are the following:

Mnemonic constant

Value

Meaning

DJC_ITEM_STRING_DESCRIPTION

0

Returns the friendly description of the item.

DJC_ITEM_STRING_TAG

1

Returns the tag string of the item.

 

 

Return value

 

Value

Meaning

 

 

Empty string

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

Valid string

String containing the requested information.