ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation Namespace / QueryDesignerDialog Class / Parameters Property
Example

In This Topic
    Parameters Property (QueryDesignerDialog)
    In This Topic
    Gets or sets the query parameters used in the SQL query.
    Syntax
    'Declaration
     
    Public Property Parameters As QueryParameterInfo()
    public QueryParameterInfo[] Parameters {get; set;}

    Property Value

    An array of QueryParameterInfo representing the parameters of the SQL query.
    Example
    dialog.Parameters = new QueryParameterInfo[] { new QueryParameterInfo("Param1", typeof(int)) };
    var parameters = dialog.Parameters;
    See Also