Remarks
Obtains the unique ID of a given position marker.
For details about recording from input devices see the How to perform a recording session tutorial.
Syntax
[Visual Basic]
control.PositionMarkerUniqueIdGet (
nIndex as long,
nUniqueId as long
) as enumErrorCodes
|
|
[C++]
short control.PositionMarkerUniqueIdGet (
long nIndex,
long *nUniqueId
);
|
|
Parameter
|
Description
|
|
|
nIndex
|
Zero-based inside of the position marker. The total number of available position markers can be retrieved at the end of the recording session through the PositionMarkerCountGet method.
|
nUniqueId
|
Reference that, after returning from the method call, will contain the unique identifier of the position marker.
|
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.
|
|