[This is preliminary documentation and subject to change.]
The ParseTime property converts a SMPTE time string into a Double. This property is read-only.
[ dTime = ] object.ParseTime( sTime ) 
 
| SMPTE time format | Format | Example | 
|---|---|---|
| 30 frames per second | hh:mm:ss:ff | 01:00:30:15 | 
| drop frame (29.97 frames per second) | hh:mm:ss;ff | 01:00:30;15 | 
| fractional seconds | hh:mm:ss.dd | 01:00:30.5 | 
You can set the frame rate using EnhEvents.FPS.
  Windows NT: Unsupported.
  Windows: Requires Windows 98.
  Windows CE: Unsupported.
  Header: Declared in stream.idl.
  Import Library: Included as a resource in stream.dll.
  Unicode: Yes.
The following example sets the variable dTime to 342.0.
Dim dTime As Double
Dim evs As EnhEvents
Set evs = new EnhEvents
 
dTime = evs.ParseTime("00:05:42:00")