What command can i use to clean the content of Output windows at the beginning of the workflow execution?
you cannot, that is a UI thing …
UNSUPPORTED: But you could hi-jack the window from invoke code
MainWindow window = RobotInstance.instance.Window as MainWindow;
window.Tracing.TraceMessages = "";
window.Tracing.OutputMessages = "";
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.