Copyright © 2008-2023 MultiMedia Soft

TracksBoard.TrackLockStateSet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Modifies the lock state of the given track. The current lock state can be obtained through the TracksBoard.TrackLockStateGet method.

Single items can be locked through the TracksBoard.ItemLockStateSet 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]

control.TracksBoard.TrackLockStateSet (

nTrack as Integer,

bLocked as enumBoolean

) as enumErrorCodes


 

[C++]

short control.TracksBoard.TrackLockStateSet (

short nTrack,

short bLocked

);


 

Parameter

Description

 

 

nTrack

Zero-based index of the track. The current number of tracks can be obtained through the TracksBoard.TracksCountGet method.

bLocked

Boolean value indicating if the track must be locked.

Supported values are the following:

Value

Meaning

BOOL_FALSE

The track is not locked.

BOOL_TRUE

The track is locked.

 

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred, check the LastError property value in order to get the error code

enumErrorCodes.ERR_NOERROR (0)

The method call was successful