Write/Read |
About Exporting Data |
Description |
Sets and reads the parameter data to export. To export data, use ExportFreqDomainTextFileWithSpecifiedDefaults Method or ExportTimeDomainTextFileWithSpecifiedDefaults Method. |
VB Syntax |
doc.TextFileDataToExport = value |
Variable |
(Type) - Description |
doc |
(object) - A PLTSDoc object |
value |
(Enum as pltsTextFileDataToExport) Parameters to export. Choose from: 0 - SE (all single-ended parameters) 1 - Balanced (all balanced parameters) 2 - All (all single-ended and balanced parameters) 3 - Customized (parameters are selected using ExportParamList Property) |
Return Type |
Enum |
Default |
0 - SE |
Examples |
doc.TextFileDataToExport = Customized |
C++ Syntax |
HRESULT get_TextFileDataToExport(tag pltsTextFileDataToExport *Value); HRESULT put_TextFileDataToExport(tag pltsTextFileDataToExport Value); |
Interface |
IPLTSDoc |