複数ケースのプローブの結果を一括でcsvファイルに出力するスクリプトを例示します。
app = designer.GetApplication() # 作成済みのプローブ(プローブ名[test])を取得 ref1 = app.GetModel(0).GetStudy(0).GetProbe(u"test") # 全ケースの結果を含むグラフを作成 app.GetDataManager().CreateAllCasesProbeGraphModel(ref1) # CSVファイルの書き出し app.GetDataManager().GetGraphModel(u"[全ケース] test").WriteTable(u"D:/allcases.csv")


