ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Parameter Class / Value Property
Example

In This Topic
    Value Property (Parameter)
    In This Topic
    Gets or sets the expression that evaluates to the value to pass for the parameter to the subreport.
    Syntax
    'Declaration
     
    Public Property Value As ExpressionInfo
    public ExpressionInfo Value {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object that evaluates to the value to pass for the parameter to the subreport.
    Example
    Parameter param = new Parameter();
    param.Value = "=Fields!OrderID.Value";
    See Also