Read-only
About Cal Sets

GetErrorTermList2 Method


Description

Returns a list of error terms found in the Cal Set containing the specified text filter.

Learn more about Reading and Writing Cal Data

See examples of Reading and Writing Cal Set Data

 VB Syntax

list = CalSet.GetErrorTermList2(setNumber, filter)

Variable

(Type) - Description

list

(Variant)  Variant containing a string array of error term names.

CalSet

(object) -  A CalSet object

setNumber

(Long) There can be more than one set of error terms in a Cal Set.

  • setNumber 0 contains the original set of error terms for a Cal Set.

  • setNumbers > 0 contain Interpolated error terms. Interpolated error terms are generated when interpolation is required and destroyed when no longer used. Learn about Interpolation.

  • To determine the setNumber in use by a channel, see GetCalSetUsageInfo

filter

(String)  This string is used as a filter so that only the error term names of interest are returned. If the filter is empty, all terms are returned. The string is case-insensitive. Here are some examples:

  • “” (empty string)- returns all error term names for the identified Cal Set and setNumber

  • “TRACKING” - returns all error term names that include the substring “tracking,” such as ResponseTracking(S21) and TransmissionTracking(S21)

  • “(s21)” - returns all error term names that end with (S21)

Return Type

Variant

Default

Not Applicable

Examples

See an Example

C++ Syntax

HRESULT GetErrorTermList2 (long SetNumber, BSTR filter, VARIANT* list)

Interface

ICalSet2