Supported in versions 14.53 and later.
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 = "" _ ) |
- Name
- The name of the parameter you want to add.
- Description
- A textual description of the parameter.
- Type
The parameter type.Value Description qtParamTypeAny Any value type. qtParamTypeBoolean A boolean value type. qtParamTypeDate A date value type. qtParamTypeNumber A number value type. qtParamTypePassword An encrypted string value type. qtParamTypeString A string value type. qtParamTypeStructure A structure value type (SAP Add-in only). - InOut
Value Description qtParamDirIn An input parameter. qtParamDirOut An 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.