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

In This Topic
    SelectAllValue Property (ReportParameter)
    In This Topic
    Gets or sets the value passed when the "Select All" option is chosen for a multiline parameter.
    Syntax
    'Declaration
     
    Public Property SelectAllValue As ExpressionInfo
    public ExpressionInfo SelectAllValue {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing the value passed when the "Select All" option is chosen.
    Example
    ReportParameter reportParameter = new ReportParameter();
    reportParameter.SelectAllValue = "*";
    See Also