Write/Read |
About Exporting Data |
Description |
Sets and reads a comma-delimted list of parameters to export. A list is ONLY used when TextFileDataToExport is set to "Customized". To export data, use ExportFreqDomainTextFileWithSpecifiedDefaults Method or ExportTimeDomainTextFileWithSpecifiedDefaults Method. |
VB Syntax |
doc.ExportParamList = value |
Variable |
(Type) - Description |
doc |
(object) - A PLTSDoc object |
value |
(String) List of parameter to export separated by commas. |
Return Type |
String |
Default |
Not Applicable |
Examples |
doc.ExportParamList = "S11,S12,SDD11" ' Frequency domain parameters doc.ExportParamList = "T11,T12,TDD11" ' Time domain parameters |
C++ Syntax |
HRESULT get_ExportParamList(BSTR *Value); HRESULT put_ExportParamList(BSTR Value); |
Interface |
IPLTSDoc |