ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation.Data.DataProviders Namespace / DataParameter Class / DataParameter Constructor / DataParameter Constructor(String,Object)
A System.String value indicating the name of the parameter.
A System.Object value indicating the value of the parameter.

In This Topic
    DataParameter Constructor(String,Object)
    In This Topic
    Initializes a new instance of the DataParameter class with a specified name and value.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal parameterName As String, _
       ByVal value As Object _
    )
    public DataParameter( 
       string parameterName,
       object value
    )

    Parameters

    parameterName
    A System.String value indicating the name of the parameter.
    value
    A System.Object value indicating the value of the parameter.
    Exceptions
    ExceptionDescription
    Thrown when parameterName is null or empty.
    See Also