winIDEA SDK
Loading...
Searching...
No Matches
test_ctrace_csv_export_format.py
1# This script is licensed under BSD License, see file LICENSE.txt, or search for `License` in the SDK online help.
2#
3# (c) TASKING Germany GmbH, 2023
4
5import isystem.connect as ic
6
7
8def test_CTraceCSVExportFormat():
9 print("Example of creating CSV trace export formatter...")
10 fmt = ic.CTraceCSVExportFormat()
11 fmt.setColumnHeaders(True)
12 fmt.setSeparator(";")
13 print(f"Export format: {fmt.getExportFormatAsStr()}")
14 print(f"CSV data separator: {fmt.getSeparator()}")
15 print(f"Contains column headers: {fmt.isColumnHeaders()}")
16
17
18if __name__ == "__main__":
19 test_CTraceCSVExportFormat()