[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.Parameter.Omit

Omit Property

Omit

Gets or sets a Boolean expression that indicates whether the parameter is skipped.

Declaration
[ExpressionBaseType(typeof(bool))]
public ExpressionInfo Omit { get; set; }
Property Value
Type Description
ExpressionInfo

An ExpressionInfo object that evaluates to a bool 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.

Examples
Parameter param = new Parameter();
param.Omit = ExpressionInfo.FromString("true");