ScrExportSNAReport
| Exports a Signal Net Analyzer output report in either HTML or CSV format. | |
| UI Command: | Simulation > Signal Net Analyzer. From the Signal Net Analyzer window, click Export Table. |
| Syntax: | obj.ScrExportSNAReport(<reportPath>, <netNameRegExp>, <lengthUnits>, <delayUnits>, <onlyDieToBall>,<exportToCSV>)
|
| Parameters: |
BSTR reportPath (full file path for report to be exported) BSTR netNameRegExp (regular expression; use '.*' to include all nets) BSTR lengthUnits (pass empty string to use default 'mm') BSTR delayUnits (pass empty string to use default 'ps') BOOL onlyDieToBall (True to enforce Only include paths from Die pin to BGA solderball option; else False) BOOL exportToCSV (True to export to CSV file; False to export to HTML file) |
| Return Value: |
INT
|
| VB Example: |
HTML File: obj.ScrExportSNAReport "C:/MyFiles/snaRpt.htm", ".*", "", "", False, False CSV File: obj.ScrExportSNAReport "C:/MyFiles/snaRpt.csv", ".*", "microns", "ns", False, True |
| IPY Example: |
HTML File: oDoc.ScrExportSNAReport('C:/MyFiles/snaRpt.htm','.*','','',0,0) CSV File: oDoc.ScrExportSNAReport('C:/MyFiles/snaRpt.csv','.*','microns','ns',0,1) |