Command "ProfileReport"

Summary

??Creates a profile-report, containing the results of all defined performance measuring points. The command belongs to the group "Performance".


Parameters

Parameter Name Description Type
FileName Path and filename of the file in which the profile-report will be saved. valueexpression

Valid parameter combinations



Description

Reports the execution times and number of runs of Profile commands to a file.

Examples


Example 1

The example below measures the times used to execute CodeBlock1 and CodeBlock2. "start" starts the recording, "point1" measures CodeBlock1 and "point2" measures CodeBlock2. ProfileReport generates a report and writes it to "report.txt"
<Profile Name="start"/>
<CodeBlock1.../>
<Profile Name="point1"/>
<CodeBlock2.../>
<Profile Name="point2"/>
<ProfileReport FileName="report.txt"/>