ActiveReports 12
Create Method (Parameter)

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.ActiveReports.Expressions.ExpressionObjectModel Namespace > Parameter Class : Create Method
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 String, _
   ByVal prompt As String, _
   ByVal dataType As ParameterType, _
   ByVal state As ParameterState, _
   ByVal nullable As Boolean, _
   ByVal allowBlank As Boolean, _
   ByVal hidden As Boolean, _
   ByVal multiValue As Boolean, _
   ByVal usedInQuery As Boolean, _
   ByVal multiline As Boolean, _
   ByVal dateOnly As Boolean _
) As Parameter
public static Parameter Create( 
   string name,
   string prompt,
   ParameterType dataType,
   ParameterState state,
   bool nullable,
   bool allowBlank,
   bool hidden,
   bool multiValue,
   bool usedInQuery,
   bool multiline,
   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