ActiveReports 8
Create Method (Parameter)

The parameter name.
The text to display to a user when prompting the a for the parameter's value.
The data type of the new parameter.
Specifies the state of the new parameter.
Specifies whether the new parameter is allowed to be Null.
Specifies whether an empty string is a valid value for the new parameter.
Specifies whether parameter should not be displayed to the user.
Specifies whether the new parameter accepts multiple values.
Specifies whether the new parameter is used in a query.
Specifies whether the parameter value supposes to be multiline.
Indicates whether the user should be prompted for both date and time or only the date. Applicable to DateTime parameters.
Creates new instance of Parameter with specified properties.
Syntax
'Declaration
 
Public Shared Function Create( _
   ByVal name As System.String, _
   ByVal prompt As System.String, _
   ByVal dataType As ParameterType, _
   ByVal state As ParameterState, _
   ByVal nullable As System.Boolean, _
   ByVal allowBlank As System.Boolean, _
   ByVal hidden As System.Boolean, _
   ByVal multiValue As System.Boolean, _
   ByVal usedInQuery As System.Boolean, _
   ByVal multiline As System.Boolean, _
   ByVal dateOnly As System.Boolean _
) As Parameter
public static Parameter Create( 
   System.string name,
   System.string prompt,
   ParameterType dataType,
   ParameterState state,
   System.bool nullable,
   System.bool allowBlank,
   System.bool hidden,
   System.bool multiValue,
   System.bool usedInQuery,
   System.bool multiline,
   System.bool dateOnly
)

Parameters

name
The parameter name.
prompt
The text to display to a user when prompting the a for the parameter's value.
dataType
The data type of the new parameter.
state
Specifies the state of the new parameter.
nullable
Specifies whether the new parameter is allowed to be Null.
allowBlank
Specifies whether an empty string is a valid value for the new parameter.
hidden
Specifies whether parameter should not be displayed to the user.
multiValue
Specifies whether the new parameter accepts multiple values.
usedInQuery
Specifies whether the new parameter is used in a query.
multiline
Specifies whether the parameter value supposes to be multiline.
dateOnly
Indicates whether the user should be prompted for both date and time or only the date. Applicable to DateTime parameters.

Return Value

New Parameter instance.
See Also

Reference

Parameter Class
Parameter Members

Support Forum