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

In This Topic
    Omit Property (Parameter)
    In This Topic
    Gets or sets a Boolean expression that indicates whether the parameter is skipped.
    Syntax
    'Declaration
     
    Public Property Omit As ExpressionInfo
    public ExpressionInfo Omit {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object that evaluates to a System.Boolean value indicating whether the parameter is skipped. The default value is false.
    Remarks
    When this property evaluates to true, the parameter is omitted from the subreport.
    Example
    Parameter param = new Parameter();
    param.Omit = ExpressionInfo.FromString("true");
    See Also