Write/Read
About Exporting Data

ExportGatedData Property


Description

Sets and reads whether to export gated frequency domain data.

Gated data is ONLY available when:

  • Exporting frequency domain data

  • The selected parameter is currently open in a window with start time and stop time gates. If the selected parameter has no gating data available, the ungated data is exported.

To export data, use ExportFreqDomainTextFileWithSpecifiedDefaults Method.

 VB Syntax

doc.ExportGatedData = value

Variable

(Type) - Description

doc

(object) - A PLTSDoc object

value

(Boolean)

0- False  Ungated, calibrated data is exported.

1 - True  Gated data is exported.

Return Type

Boolean

Default

0 - False

Examples

doc.ExportGatedData = False

C++ Syntax

HRESULT get_ExportGatedData(Variant_Bool *Value);

HRESULT put_ExportGatedData(Variant_Bool Value);

Interface

IPLTSDoc