Copyright © 2011-2023 MultiMedia Soft

DisplayTracksBoard property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property DisplayTracksBoard As TracksBoard


 

[C#]

public TracksBoard DisplayTracksBoard {get;}


 

[C++]

public: __property TracksBoard* get_DisplayTracksBoard ();


 

This property is Read-only

 

 

Remarks

The embedded TracksBoard object.

This property encapsulates the functionality of the TracksBoard class.

 

When using the API from legacy development environments like Visual Basic 6 or unmanaged Visual C++, where communication is performed through COM interoperability, this object can be accessed through its COM interface exposed by the DisplayTracksBoardGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.DisplayTracksBoard.Create (Picture.Handle, ...);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->DisplayTracksBoardGet()->Create (Picture.m_hWnd, ...);

 

 

Visual Basic 6

 

audioSoundEditorApi.DisplayTracksBoardGet().Create Picture.hWnd, ...

 

 

For details about the use of the TracksBoard refer to the How to use the TracksBoard to visually compose songs tutorial.