Copyright © 2013-2015 MultiMedia Soft

MidiDjConsole.DisplaySegmentCountGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Certain models of DJ consoles come with one or more displays, also known as "VFD" which stands for "Vacuum Fluorescent Display", allowing to display a string of alphanumeric characters: this method allows enumerating VFD segments whose management is embedded inside the component. After completing the enumeration, the name of each segment and related parameters can be retrieved through the MidiDjConsole.DisplaySegmentInfoGet 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]

MidiDjConsole.DisplaySegmentCountGet (

ByRef nCount as Int32

) as enumDjcErrorCodes


 

[C#]

public enumDjcErrorCodes MidiDjConsole.DisplaySegmentCountGet (

ref Int32 nCount

);


 

[C++]

public: enumDjcErrorCodes MidiDjConsole.DisplaySegmentCountGet (

Int32 __gc *nCount

);


 

Parameter

Description

 

 

nCount

Reference that, on return from the method call, will contain the number of available display segments.

 

 

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.