Read-only |
About Cal Sets |
Description |
This command has been replaced with Get StandardByString Returns standard acquisition data from the Cal Set. The returned data is complex pairs. Learn more about Reading and Writing Cal Data |
|||||||||||||||||||
VB Syntax |
data = CalSet.getStandard (standard, rcv, src) |
|||||||||||||||||||
Variable |
(Type) - Description |
|||||||||||||||||||
data |
(Variant) Two-dimensional safe array to store the returned data. Memory for the returned Variant is allocated by the VNA and must be released by client. Note: See also getStandardComplex on the ICalData2 interface to avoid using the variant data type. |
|||||||||||||||||||
CalSet |
A Cal Set (object) |
|||||||||||||||||||
standard |
(enum NACalClass) Standard data to be read. Choose from:
|
|||||||||||||||||||
rcv |
(long) - Receiver Port |
|||||||||||||||||||
src |
(long) - Source Port |
|||||||||||||||||||
Return Type |
(variant) |
|||||||||||||||||||
Default |
Not Applicable |
|||||||||||||||||||
Examples |
Dim varStd As Variant Dim varStd2 As Variant
Cal Set.OpenCalSet( naCalType_TwoPortSOLT, 1, 2) varStd2 = Cal Set.getStandard(naSOLT_Thru,1,2) Cal Set.CloseCalSet( ) |
|||||||||||||||||||
C++ Syntax |
HRESULT getStandard(tagNACalClass stdclass, long ReceivePort, long SourcePort, VARIANT* pData) |
|||||||||||||||||||
Interface |
ICalSet |