5import isystem.connect
as ic
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15 optCtrl = ic.COptionController(connMgr,
"/IDE/System.Debug.Applications")
17 initialSize = optCtrl.size()
19 print(f
"Adding another item to the: {optCtrl.URL()} array...")
20 optCtrl2 = optCtrl.add()
21 print(f
"\tURL: {optCtrl2.URL()}")
22 print(f
"\tDefault value of 'Name' attribute: {optCtrl2.get('Name')}")
24 print(f
"Removing the created item (index {initialSize})...")
25 optCtrl.remove(initialSize)
28if __name__ ==
"__main__":