MidiDjConsole.ProfileTypedItemCountGet method |
|
Remarks
Enumerates items of a specific type contained inside the profile of the DJ Console. After completing the enumeration, the name of each item of the enumerated type can be retrieved through the MidiDjConsole.ProfileTypedItemNameGet 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] MidiDjConsole.ProfileTypedItemCountGet ( nItemType as enumDjConsoleItemType, ByRef nCount as Int32 ) as enumDjcErrorCodes |
[C#] public enumDjcErrorCodes MidiDjConsole.ProfileTypedItemCountGet ( enumDjConsoleItemType nItemType, ref Int32 nCount ); |
[C++] public: enumDjcErrorCodes MidiDjConsole.ProfileTypedItemCountGet ( enumDjConsoleItemType nItemType, Int32 __gc *nCount ); |
Parameter |
Description |
|||||||||||||||||||||
|
|
|||||||||||||||||||||
nItemType |
Specifies the type of item whose number must be obtained. Supported values are the following:
|
|||||||||||||||||||||
nCount |
Reference that, on return from the method call, will contain the number of items of the given type |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred. Check the LastError property value in order to see the last error. |
enumDjcErrorCodes.ERR_DJC_NOERROR (0) |
The method call was successful. |