5import isystem.connect
as ic
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15 cfgCtrl = ic.CConfigurationController(connMgr)
17 traceCtrl = ic.CTraceController(connMgr,
"example.trd",
"w")
19 optCtrl = cfgCtrl.doc(
"example.trd")
20 print(f
"URL of the 'document' controller for file 'example.trd': {optCtrl.URL()}")
22 traceCtrl.closeDiscard()
25if __name__ ==
"__main__":