Navigation: Object Model Reference > Step Object > Properties Property |
|
Returns an array containing the names of all properties in the step (read-only).
Syntax
Step.Properties As Variant
Arguments
Step
Step object
The following code demonstrates how to iterate over all step properties, logging their names and values.
For Each name in Step.Properties
Builder.LogMessage name & " = " & Step.Property(name)
Next
See Also
Applies to Step object