Copyright © 2008-2019 MultiMedia Soft
SetRewindOnEndOfPlayback method
Remarks
Causes the control to automatically rewind the playback position when reaching the end of the editing session's playback.
Syntax
[Visual Basic]
control.SetRewindOnEndOfPlayback (
bRewind as enumBoolean
) as enumErrorCodes
[C++]
short control.SetRewindOnEndOfPlayback (
BOOL bRewind
);
Parameter
Description
bRewind
Boolean value that specifies if the control must automatically rewind the playback position when the end of the editing 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
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.