Navigation: Object Model Reference > Step Object > ExpProperty Property |
|
Returns a step property with all macros and script expanded.
Syntax
Step.ExpProperty(ByVal builder As Builder, ByVal name As String, Optional ByVal varType As VarType = vbString) As Variant
Arguments
Step
Step object
builder
Builder object (required).
name
Required. Name of step property to retrieve (case-sensitive matching). If the property does not exist, Missing is returned.
Note: To determine the name of each property for a built-in custom action, create a step for that action in the GUI, save the project, open the .bld file in a text editor, and examine the elements under that step element in the file.
varType
Optional (defaults to vbString/VT_BSTR). Variant type to convert expanded value to before returning. Use vbBoolean/VT_BOOL (11) for checkbox properties, vbLong/VT_I4 (3) for radio button or drop-down combo properties, and vbString/VT_BSTR (8) for all other property types.
See Also
Applies to Step object