[]
Gets or sets a name of a grouping or data set within which to hide the item when the expression's value matches the preceding instance.
public string HideDuplicates { get; set; }
Type | Description |
---|---|
string | A string value indicating the name of the grouping or data set to apply the hiding. |
<p>This property hides duplicates within a specified group or data set. When a new group instance is encountered,
the first item is shown. Rows on previous pages are ignored for hiding duplicates. If within a table or matrix cell, only the text is hidden, not the textbox itself.
This property is ignored in matrix subtotals.
TextBox textBox = new TextBox();
textBox.HideDuplicates = "GroupName";