Write-only
 

Afr Method

Description

Characterizes two fixture files from one 2x thru file.

VB Syntax

plts.Afr(settings)

Variable

(Type) - Description

plts

(object) - A PLTSApplication object

settings

(string) Characterize settings in xml format:

 

 

<AfrApiArgs>

 

 

    <Thru filePath="C:\2xThru.s4p" />

//2x thru standard and file path of 2x thru standard (file must exist)

 

    <FixtureA1 filePath="C:\fix_1.s4p" />

//Characterized fixture A (on DUT left side) and file path of generated left fixture (overwrites file if it exists)

 

    <FixtureB1 filePath="C:\fix_2.s4p" />

//Characterized fixture B (on DUT right side) and file path of generated right fixture (overwrites file if it exists)

 

</AfrApiArgs>

 

Return Type

Not Applicable

Default

None

Examples

Dim xmlSettings As XElement = _

  <AfrApiArgs>

    <Thru filePath="C:\2xThru.s4p" />

    <FixtureA1 filePath="C:\fix_1.s4p" />

    <FixtureB1 filePath="C:\fix_2.s4p" />

  </AfrApiArgs>

app.Afr(xmlSettings.ToString())

See an example program.

C++ Syntax

HRESULT Afr(BSTR settings);

Interface

IPLTSApplication