MidiDjConsole.DisplaySegmentSymbolShow method |
|
Remarks
Displays a character's symbol on a specific cell of the given VFD segment. If you need to display a string of characters instead of a single character, use the MidiDjConsole.DisplaySegmentStringShow method.
You can verify if the control comes with support for managing VFD segments of the connected DJ Console through the MidiDjConsole.DisplaySegmentManagementAvailable 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] control.MidiDjConsole.DisplaySegmentSymbolShow ( nIndex as Long, nSymbol as Integer, nCell as Integer ) as enumDjcErrorCodes |
[C++] short control.MidiDjConsole.DisplaySegmentSymbolShow ( long nIndex, short nSymbol, short nCell ); |
Parameter |
Description |
|
|
nIndex |
Zero-based index of the VFD segment. The maximum number of available segments can be retrieved through the MidiDjConsole.DisplaySegmentCountGet method. |
nSymbol |
The numerical value of the character's symbol to display. The characters set in use should be provided inside the technical specifications of the DJ Console in use. |
nCell |
The 1-based numerical value of the cell that will display the character's symbol within the display segment. The maximum number of cells available for the given segment can be obtained through the MidiDjConsole.DisplaySegmentInfoGet method. |
Return value
Value |
Meaning |
|
|
enumDjcErrorCodes.ERR_DJC_NOERROR (0) |
The call was successful. |
Negative value |
An error occurred: see the LastError property for further error details or for a list of the possible error values. |