Remarks
Obtains the number of position markers previously added through calls to the PositionMarkerAdd method.
For details about recording from input devices see the How to perform a recording session tutorial.
Syntax
[Visual Basic]
control.PositionMarkerCountGet (
nCount as long
) as enumErrorCodes
|
|
[C++]
short control.PositionMarkerCountGet (
long *nCount
);
|
|
Parameter
|
Description
|
|
|
nCount
|
Reference that, after returning from the method call, will contain the number of available position markers
|
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.
|
|