Write/Read
About Exporting Data

ExportInOneFile Property


Description

Sets and reads whether to export all data in one file or to separate files.

To export data, use ExportFreqDomainTextFileWithSpecifiedDefaults Method or ExportTimeDomainTextFileWithSpecifiedDefaults Method.

 VB Syntax

doc.ExportInOneFile = value

Variable

(Type) - Description

doc

(object) - A PLTSDoc object

value

(Boolean)

0 - False  All selected parameters are saved to separate files. Each file is saved to the specified folder with the filename you entered and a parameter label appended to the name. For example, if you entered device4 as the file name, the S11 parameter file is named: device4_S11.txt.

1 - True  All selected parameters are saved to one file.

Return Type

Boolean

Default

1 - True

Examples

doc.ExportInOneFile = False

C++ Syntax

HRESULT get_ExportInOneFile(Variant_Bool *Value);

HRESULT put_ExportInOneFile(Variant_Bool Value);

Interface

IPLTSDoc