Write-only |
About Exporting Data |
Description |
Exports data to a file. |
|
VB Syntax |
Doc.Export(settings) |
|
Variable |
(Type) - Description |
|
Doc |
(object) - A PLTSDocument object |
|
settings |
(string) Characterize settings in xml format: |
|
|
<ExportApiArgs> |
|
|
<FDYDataFormat>RI</FDYDataFormat> |
//Y data format must be in RI, MA , or DB |
|
<ExportFileName>C:\mydata.s2p</ExportFileName> |
//Output file path (overwrites file if it exists) |
|
</ExportApiArgs> |
|
Return Type |
Not Applicable |
|
Default |
None |
|
Examples |
Dim xmlExportSettings As XElement = _ <ExportApiArgs> <FDYDataFormat>RI</FDYDataFormat> <ExportFileName>C:\mydata.s2p</ExportFileName> </ExportApiArgs> doc.Export(xmlExportSettings.ToString()) |
|
C++ Syntax |
HRESULT Export(BSTR settings); |
|
Interface |
IPLTSDocument |