[]
Gets or sets a Boolean expression that indicates whether the parameter is skipped.
[ExpressionBaseType(typeof(bool))]
public ExpressionInfo Omit { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object that evaluates to a bool value indicating whether the parameter is skipped.
The default value is |
When this property evaluates to true
, the parameter is omitted from the subreport.
Parameter param = new Parameter();
param.Omit = ExpressionInfo.FromString("true");