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
[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.
|
|