Write/Read
About Exporting Data

ExportDataRange Property


Description

Sets and reads the data range to export.

To export data, use ExportFreqDomainTextFileWithSpecifiedDefaults Method or ExportTimeDomainTextFileWithSpecifiedDefaults Method.

 VB Syntax

doc.ExportDataRange = range

Variable

(Type) - Description

doc

(object) - A PLTSDoc object

range

(Enum as pltsDataRange)  Range to export. Choose from:

0 - RangeAll - Export the entire data range in PLTS memory.

1 - Subset  The data range is specified with the start freq/time, stop freq/time and step freq/time properties.

Return Type

Enum

Default

RangeAll (0)

Examples

doc.ExportDataRange = Subset

C++ Syntax

HRESULT get_ExportDataRange(tag pltsDataRange* Value);

HRESULT put_ExportDataRange(tag pltsDataRange Value);

Interface

IPLTSDoc