Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
RecordingDuration event 
 
Remarks 
 
Occurs, during a recording session, to notify the actual recording duration in milliseconds. 
 
For further details see the How to perform a recording session section. 
 
 
Syntax 
 
[Visual Basic] 
Public Event RecordingDuration As RecordingDurationEventHandler
 
[C#] 
public event RecordingDurationEventHandler RecordingDuration;
 
[C++] 
public: __event RecordingDurationEventHandler* RecordingDuration;
 
 
Event Data 
 
The event handler receives an argument of type RecordingDurationEventArgs. 
 
RecordingDurationEventArgs members
Description
 
 
nDuration
Number representing the duration, expressed in milliseconds, of the current recording session
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents