Remarks
During a playback session, started through the RecordedSound.Play or RecordedSound.PlayRange methods, seeks playback position to the position of the given marker.
For details about recording from input devices see the How to perform a recording session tutorial.
Syntax
[Visual Basic]
control.PositionMarkerSeekPlayPositionTo (
nUniqueId as long
) as enumErrorCodes
|
|
[C++]
short control.PositionMarkerSeekPlayPositionTo (
long nUniqueId
);
|
|
Parameter
|
Description
|
|
|
nUniqueId
|
Number representing the unique identifier of the position marker.
The number of available position markers can be retrieved at the end of the recording session through the PositionMarkerCountGet method and, for each position marker inside the list, the related unique identifier.can be obtained through the PositionMarkerUniqueIdGet method.
|
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.
|
|