TimingStart


Function

 

Starts the specified timing.

This method is valid only when "Command" is selected in the timing setting.

 

Format

 

Ret = dncDaq01.TimingStart(TimingNo)

 

Parameters

 

TimingNo [ C#: int ] [ VB.NET: Integer ]

Specifies the timing No..

  

Return value

 

Ret [ C#: int ] [ VB.NET: Integer ]

 

â– Common

Value

Description

0

Normality completion

500001

The method on an unconfigured device has been called. Check the device settings.

500002

The method was called that the device does not support.

510001

The input parameter is invalid. Check the parameter contents.

Other errors (see: Error code details)

 

Remarks

 

Starts the timing of the specified timing No..

 

Example

 

Starts timing 0.

C#

int  Ret;

ret = dncDaq01.TimingStart(0);

 

VB.NET

Dim Ret As Integer

Ret = dncDaq01.TimingStart(0)