1.13.1 Results Log

The Results Log is an output window that automatically stamps each block of output with the date and time and the name of the window associated with the results. The user interface allows users to configure which results are displayed and to float the window or dock it to Origin's main window.

The following example shows the simplest way to output to the Results Log from Origin C using the OutStringToResultsLog method of the Project class. While this is the simplest way to output to the Results Log, it can also be considered the most limited. Each call to the OutStringToResultsLog method is considered an individual log and will be stamped with the current date and time and the name of the associated window.

string str = "Column1\tColumn2\tColumn3\n3.05\t17.22\t35.48";
Project.OutStringToResultsLog(str);