EnhEvents.TimeStr

[This is preliminary documentation and subject to change.]

The TimeStr property converts a double into a SMPTE time string. This property is read-only.

Syntax

[ sTime = ] object.TimeStr( dTime ) 
 

Parts

object
Object expression that resolves to an EnhEvents object.
dTime
Double that specifies the time.
sTime
String that receives the time specified in dTime as an SMPTE time string, of the format "hh:mm:ss.dd".

QuickInfo

  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.

See Also

EnhEvents.ParseTime

Examples

The following example sets the variable sTime to "00:05:42.00".

Dim sTime As String
Dim evs As EnhEvents
Set evs = new EnhEvents
 
sTime = evs.TimeStr(342.0)