Add Method
Description
Adds a new ActionParameterDefinition object to the collection.
Syntax
Visual Basic
Public Sub Add( _
   ByVal Name As String, _
   ByVal Description As String, _
   ByVal Type As qtParameterType, _
   ByVal InOut As qtParameterDirection, _
   Optional ByVal DefaultValue As Variant = "" _
) 
Parameters
Name
The name of the parameter you want to add.
Description
A textual description of the parameter.
Type
ValueDescription
qtParamTypeAnyAny value type.
qtParamTypeBooleanA boolean value type.
qtParamTypeDateA date value type.
qtParamTypeNumberA number value type.
qtParamTypePasswordAn encrypted string value type.
qtParamTypeStringA string value type.
qtParamTypeStructureA structure value type (SAP Add-in only).
The parameter type. 
InOut
ValueDescription
qtParamDirInAn input parameter.
qtParamDirOutAn output parameter.

Indicates whether the parameter is an input or output parameter.

DefaultValue
The default value for the parameter.  The specified value must match the value type specified for the Type argument.
Example
See Also