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] MidiDevices.MidiDjConsole.DisplaySegmentSymbolShow ( nIndex as Int32, nSymbol as Int16, nCell as Int16 ) as enumDjcErrorCodes |
[C#] public enumDjcErrorCodes MidiDjConsole.DisplaySegmentSymbolShow ( Int32 nIndex, Int16 nSymbol, Int16 nCell ); |
[C++] public: enumDjcErrorCodes MidiDjConsole.DisplaySegmentSymbolShow ( Int32 nIndex, Int16 nSymbol, Int16 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 |
|
|
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. |