'Declaration Public Overloads Shared Function Create( _ ByVal name As String, _ ByVal prompt As GrapeCity.Enterprise.Data.Expressions.ExpressionInfo, _ ByVal dataType As ParameterType, _ ByVal state As ParameterState, _ ByVal nullable As Boolean, _ ByVal allowBlank As Boolean, _ ByVal As Boolean, _ ByVal multiValue As Boolean, _ ByVal usedInQuery As Boolean, _ ByVal multiline As Boolean, _ ByVal dateOnly As Boolean, _ ByVal orderByCondition As OrderByCondition, _ ByVal orderByDirection As OrderByDirection, _ ByVal displayFormat As String, _ Optional ByVal report As Report _ ) As Parameter
public static Parameter Create( string name, GrapeCity.Enterprise.Data.Expressions.ExpressionInfo prompt, ParameterType dataType, ParameterState state, bool nullable, bool allowBlank, bool , bool multiValue, bool usedInQuery, bool multiline, bool dateOnly, OrderByCondition orderByCondition, OrderByDirection orderByDirection, string displayFormat, Report report )
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.
- orderByCondition
- Specifies whether the valid values are ordered by labels, values or none for the parameter.
- orderByDirection
- Specifies whether the valid values are ordered in ascending or descending order for the parameter.
- displayFormat
- Parameter display format.
- report
- The report.
Return Value
New Parameter instance.