Specifies whether duplicate values in consecutive records should be suppressed.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute(false)]
public bool HideDuplicates { get; set; }
Visual Basic
<DefaultValueAttribute(False)> _
Public Property HideDuplicates As Boolean
	Get
	Set

Remarks

You can use the HideDuplicates property to hide a field on a report when its value is the same as in the preceding record.

For example, on a report listing suppliers and their products, each supplier's name can appear once for each group of products, rather than once for each product.

The default value for this property is False.

See Also