Step.LogAdditionalResult
- Updated2024-10-09
- 1 minute(s) read
Step.LogAdditionalResult
Syntax
Step.LogAdditionalResult( resultValue, resultName = "", resultPropertyFlags = PropFlags_IncludeInReport)
Purpose
If the step is currently executing, this method adds a custom additional result to the step results.
Remarks
If the step is looping, this method adds a custom additional result to the Step.CurrentLoopResult . If the step is not looping, this method adds a custom additional result to Step.LastStepResult property.
This method returns an error if the step is not executing. This method performs no action if you disable result recording.
This method does not affect the additional result settings of the step that you programmatically configure using the Step.AdditionalResults property.
Parameters
resultValue As PropertyObject
[In] Specifies the value of the additional result.
resultName As String
[In] Specifies the name of the additional result. Pass an empty string to use the name of the object you passed for the resultValue parameter.
This parameter has a default value of "" .
resultPropertyFlags As Long
[In] Specifies the PropertyFlags of the additional result. You must include the PropFlags_IncludeInReport flag for the additional result to appear in the report.
This parameter has a default value of PropFlags_IncludeInReport .