Copyright © 2006-2019 MultiMedia Soft

RecordedSound.SoundDirectionIsEnabled method

Previous pageReturn to chapter overviewNext page

Remarks

 

Verifies if the possibility to play the loaded song in reverse has been enabled on the given player through the RecordedSound.SoundDirectionEnable method.

 

For further details about recorded sound methods refer to the RecordedSound object section.

For further details see the How to perform a recording session section.

 

 

Syntax

 

[Visual Basic]

control.RecordedSound.SoundDirectionIsEnabled (

bEnabled as enumBoolean

) as enumErrorCodes


 

[C++]

short control.RecordedSound.SoundDirectionIsEnabled (

long *bEnabled

);


 

 

Parameter

Description

 

 

bEnabled

Reference that, on return from the method call, will contain the boolean value specifying if reverse playback is currently enabled.

Supported values are the following:

Mnemonic constant

Value

Meaning

BOOL_FALSE (default)

0

Reverse playback is not enabled

BOOL_TRUE

1

Reverse playback is enabled

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The call was successful.