ReplayReportStep Method
The step name as it will appear in the report.
A value of the EventStatus enum.
The arguments passed to the test step function. Zero or more arguments, passed as a comma-delimited list of values. Pass parameters only of data types that can be stored in a Variant.
Writes an event to the test report.
Remarks
Use this method during replay to report the action performed and its status. In general, call ReplayReportStep at the end of the replay function.
Syntax
'Declaration
 
Public Sub ReplayReportStep( _
   ByVal StepName As System.String, _
   ByVal Status As EventStatus, _
   ByVal ParamArray list() As System.Object _
) 
public void ReplayReportStep( 
   System.string StepName,
   EventStatus Status,
   params System.object[] list
)

Parameters

StepName
The step name as it will appear in the report.
Status
A value of the EventStatus enum.
list
The arguments passed to the test step function. Zero or more arguments, passed as a comma-delimited list of values. Pass parameters only of data types that can be stored in a Variant.