Copyright © 2006-2019 MultiMedia Soft

RecordingPosition event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs, during a recording session, to notify the actual recording position in milliseconds.

 

In case the recording session should have been started in append, mix, overwrite or insert mode (through the SetRecordingMode method), the position reported by this event would keep count of the previous recording session as well; if you want to know the duration of the current recording session only, the RecordingDuration event would be the way to go.

 

 

For further details see the How to perform a recording session section.

 

 

Syntax

 

[Visual Basic]

RecordingPosition (

ByVal nPosition as long

)


 

[C++]

void RecordingPosition (

long nPosition

);


 

 

Parameter

Description

 

 

nDuration

Number representing the position, expressed in milliseconds, of the current recording session.

This value is limited to a maximum of 32 bits; for larger coverage its recommended using the RecordingPositionDouble event.