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]
Public Function PositionMarkerCountGet (
ByRef nCount as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes PositionMarkerCountGet (
ref Int32 nCount
);
|
|
[C++]
public: enumErrorCodes PositionMarkerCountGet (
Int32 __gc *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 last error.
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|