Read/Write |
|
Description |
Note: Do NOT send this command to rely on SmartCal to determine the most accurate Thru port pairs for the cal. You can send the query form of this command to learn the port pairs determined by SmartCal. Sets and returns the Thru connection port pairs for the calibration. Send the query form of this command to learn the Thru pairs determined by SmartCal. See Thru Pairs Sequence to learn how to send this and other Thru commands. Learn more about Thru method and port pairings. See an example of a 4-port guided calibration using COM. |
VB Syntax |
guidedCal.ThruPortList = t1a, t1b, t2a, t2b, t3a, t3b |
Variable |
(Type) - Description |
guidedCal |
GuidedCalibration (object) |
t1a, t1b... |
(Variant) Port numbers in pairs - a one-dimensional array of Long integers. t1a, t1b (Thru1 - port A and port B) t2a, t2b (Thru2 - port A and port B) t3a, t3b (Thru3 - port A and port B) |
Return Type |
Variant - a one-dimensional array of Long integers. |
Default |
The most accurate port pairs for the cal. |
Example |
thruList = Array(1,2,1,3,1,4) guided.ThruPortList = thruList 'Sets the following three thru connections for a 4-port calibration: |
C++ Syntax |
HRESULT get_ThruPortList(VARIANT* portList); HRESULT put_ThruPortList(VARIANT portList); |
Interface |
IGuidedCalibration |