Copyright © 2008-2023 MultiMedia Soft

TracksBoard.ClipboardDataAvailable method

Previous pageReturn to chapter overviewNext page

Remarks

 

Verifies the availability of potential sound file items inside the clipboard. In case of availability there would be the possibility to try pasting available files into the session through the TracksBoard.ItemSoundFileFromClipboardPaste method.

 

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

For further details about methods of the TracksBoard refer to the TracksBoard object section.

 

 

Syntax

 

[Visual Basic]

Public Function ClipboardDataAvailable (

ByRef bDataAvailable as Boolean

)


 

[C#]

public void ClipboardDataAvailable (

ref bool bDataAvailable

);


 

[C++]

public: enumErrorCodes CurrentDurationGet (

bool __gc *bDataAvailable

);


 

Parameter

Description

 

 

bDataAvailable

Reference that, after returning from the method call, will contain a boolean value indicating if there are data files that could be pasted into the session.

Supported values are the following:

Value

Meaning

false

No data file available.

true

Data file available.

 

 

 

Return value

 

None