Read-only |
About Cal Sets |
Description |
Note: This command is replaced by CalSet.getStandardList2. Returns the list of Standards contained in this Cal Set for the CalType specified in the OpenCal Set method. Learn more about reading and writing Cal Data using COM. The list is a comma separated, textual representation of the error terms with the term name followed by the port path in parentheses. Standard (n, n), Standard (m, n) Before calling this method you must open the Cal Set with OpenCal Set. If the Cal Set is not open, this method returns E_NA_Cal Set_ACCESS_DENIED. Use StringToNACalClass to convert the list entrees to values that can be used with GetStandard and PutStandard. Note: The port path designation (m n) indicates the receive and source ports for the measurement. Shorts, opens and loads are single port devices, designated in this list by (n n) where n equals the port to which the device is connected. These devices are all characterized by reflection measurements. |
VB Syntax |
CalSet.GetStandardsList (count, list) |
Variable |
(Type) - Description |
CalSet |
(object) - A Cal Set object |
count |
(long [out]) - indicates the number of items returned in the list |
list |
(string) - Variable to store the returned Comma separated list of items. |
Return Type |
String |
Default |
Not Applicable |
Examples |
dim count as Integer Assuming the Cal Set contained the full set of standards for this two port cal, the returned list would be: "Open(1 1), Short(1 1), Load(1 1), Thru(1 1), Isolation(2 1), Open(2 2), Short(2 2), Load(2 2), Thru(2 2), Isolation(1 2) Thru(2 1), Thru(1 2)" |
C++ Syntax |
HRESULT GetStandardsList( long* count, BSTR* list); |
Interface |
ICalSet |