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 class section.
For further details see the How to perform a recording session section.
Syntax
[Visual Basic]
Public Function SetRewindOnEndOfPlayback (
bRewind as Boolean
) as enumErrorCodes
|
|
[C++]
public: enumErrorCodes 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:
Value
|
Meaning
|
false
|
Don't rewind the playback position when the end is reached.
|
true (default)
|
Rewind the playback position when the end is reached.
|
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|