Get the measurement signal output delay time.
Ret = ZmGetSignalOutputDelay ( Id , ChannelNo , Time )
Id
[ VB.NET: Short ] [ C, C++: short ] [ C#: short ]
Specify the device ID retrieved from ZmInit.
ChannelNo
[ VB.NET: UShort ] [ C, C++: unsigned short ] [ C#: ushort ]
Specify the channel number.
Time
[ VB.NET: Single ] [ C, C++: float * ] [ C#: out float ]
Specify the variable address for storing the measurement signal output delay time. Get in msec unit.
If the measurement signal output delay function is disabled, this will be 0.0.
Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ]
Definition |
Value |
Description |
ZM_ERR_SUCCESS |
0 |
Normality completion |
ZM_ERR_SYS_CHANNEL_NO |
20100 |
Channel No is out of the settable range. |
The others (See also: Details of Error Code)
0.0 : Measurement signal output delay function is disabled
Get the measurement signal output delay time.
Measurement signal output delay time is gotten for each channel.
For details about measurement signal output delay, please refer to the glossary "Various Delays".
Get the measurement signal output delay time for ChannelNo = 1.
VB.NET |
Dim Ret As Integer Dim Time As Single |
C, C++ |
long Ret; float Time; |
C# |
int Ret; float Time; |