Write/Read |
About Electrical Delay |
Description |
Sets the electrical delay in physical length (distance) for the selected measurement. |
VB Syntax |
meas.ElecDistanceDelay = value |
Variable |
(Type) - Description |
meas |
A Measurement (object) |
value |
(double) - Electrical Delay in distance. Set units using ElecDistanceDelayUnit. |
Return Type |
Double |
Default |
0 |
VB Examples |
meas.ElecDistanceDelay = 1e-3 'Write |
edelay = meas.ElecDistanceDelay 'Read |
|
C# Examples |
Meas.ElecDistanceDelay = 1e-3 'Write // This property returns an object, and the object must be cast to a double to access the value. Edelay = (double)meas.ElecDistanceDelay 'read |
C++ Syntax |
HRESULT get_ElecDistanceDelay(VARIANT *pVal) |
Interface |
IMeasurement11 |