ICImagingControl.ReferenceTimeStart Property |
||
Returns the reference time at which the image stream was started. | ||
Syntax: | Public ReferenceTimeStart As Double |
|
Remarks: | If ICImagingControl.LiveStart has been called, all necessary filters are connected. This could take some time. After the all filters have been connected, the video stream started. This is the time that is returned by the ReferenceTimeStart property. The property's unit is seconds. If the ReferenceTimeStart is retrieved while the live video is not running, the error message "Run-time error '20' This function cannot be called if livemode is inactive" is displayed. |
|
Sample: | This example demonstrates how to show a live video for five seconds. If ICImagingControl1.DeviceValid = True Then With ICImagingControl1 .LiveStart While .ReferenceTimeCurrent - .ReferenceTimeStart < 5 Debug.Print .ReferenceTimeCurrent - .ReferenceTimeStart Wend End With End If |
|
See also: | ICImagingControl, ICImagingControl.LiveStart, ICImagingControl.ReferenceTimeCurrent |