ttrStopTracking
ttrStopTracking( [l_scopeName] [g_printReport] ) => t / nil
Description
Stops tracking the time for the given scope name.
Arguments
Value Returned
|
The tracking is stopped. A report is also printed if specified. |
|
Examples
The following code stops tracking the currently active scope.
ttrStopTracking()
The following code stops tracking the scope Myscope1.
ttrStopTracking("Myscope1")
Stops tracking the scope Myscope2 and prints the report.
ttrStopTracking("Myscope2" t)
The following code stops tracking the currently active scope and prints the report.
ttrStopTracking(nil t)
Related Topics
Return to top