Remarks
Supported only by recording sessions in WAV format, moves back the recording position truncating the existing recorded sound beyond the given position.
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 RewindWavRecPosition (
nFinalPosition as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes RewindWavRecPosition (
Int32 nFinalPosition,
);
|
|
[C++]
public: enumErrorCodes RewindWavRecPosition (
Int32 nFinalPosition
);
|
|
Parameter
|
Description
|
|
|
nFinalPosition
|
Rewind position expressed in milliseconds
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|