This will produce a tick every interval of time and start the stopwatch.

Namespace:  CoreDevices
Assembly:  Micromanager_net (in Micromanager_net.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void StartTimeTicks(
	EasyCore eCore,
	long IntervalMS,
	long SubTickInterval
)
Visual Basic (Declaration)
Public Sub StartTimeTicks ( _
	eCore As EasyCore, _
	IntervalMS As Long, _
	SubTickInterval As Long _
)
Visual C++
public:
void StartTimeTicks(
	EasyCore^ eCore, 
	long long IntervalMS, 
	long long SubTickInterval
)

Parameters

eCore
Type: CoreDevices..::.EasyCore

[Missing <param name="eCore"/> documentation for "M:CoreDevices.StopWatch.StartTimeTicks(CoreDevices.EasyCore,System.Int64,System.Int64)"]

IntervalMS
Type: System..::.Int64
This is the main interval that will be ticked
SubTickInterval
Type: System..::.Int64
This is a sub interval and should be set as an offset from the main interval. I.e. If interval clicks at every 1 second, but at 1.2 and 2.2 and 3.2 you also want a click then set this parameter to 200

See Also