Write/Read
About Fixturing

Embed4PortNetworkFilename Property


Description

Specifies the 4-port touchstone file (*.s4p) in which the network to embed or de-embed resides. If the specified file does not exist, an error occurs when type command is sent.

Following this command, send Embed4PortNetworkMode Property.

Note:  This command affects ALL measurements on the channel.

 VB Syntax

fixture.Embed4PortNetworkFilename(netNum) = value

Variable

(Type) - Description

fixture

A Fixturing (object)

netNum

(Integer) Network position. Choose from 1 or 2. See Embed4PortTopology Property

value

(String)  Full path, file name, and extension (.s4P) of the circuit.

Files are typically stored in "c:\users\public\network analyzer\documents"

Return Type

String

Default

Not Applicable

Examples

fixture.Embed4PortNetworkFilename(2) = "c:\users\public\network analyzer\documents/myFile.s4p" 'Write

value = fixture.Embed4PortNetworkFilename(1) 'Read

C++ Syntax

HRESULT get_Embed4PortNetworkFilename( short networkNum, BSTR *filename);

HRESULT put_Embed4PortNetworkFilename( short networkNum, BSTR filename);

Interface

IFixturing2