Copyright © 2006-2019 MultiMedia Soft

RecordedSound.SetRewindOnEndOfPlayback method

Previous pageReturn to chapter overviewNext page

Remarks

 

Causes the control to automatically rewind the playback position when reaching the end of the recording session's playback.

 

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.SetRewindOnEndOfPlayback (

bRewind as enumBoolean

) as enumErrorCodes


 

[C++]

short control.RecordedSound.SetRewindOnEndOfPlayback (

BOOL bRewind

);


 

 

Parameter

Description

 

 

bRewind

Boolean value that specifies if the control must automatically rewind the playback position when the end of the recording session is reached.

Supported values are the following:

Mnemonic constant

Value

Meaning

BOOL_FALSE

0

Don't rewind the playback position when the end is reached.

BOOL_TRUE (default)

1

Rewind the playback position when the end is reached.

 

 

Return value

 

Value

Meaning

 

 

Negative value

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

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.