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

In This Topic
    HideDuplicates Property
    In This Topic
    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.
    Syntax
    'Declaration
     
    Public Property HideDuplicates As String
    public string HideDuplicates {get; set;}

    Property Value

    A System.String value indicating the name of the grouping or data set to apply the hiding.
    Remarks

    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.

    Example
    TextBox textBox = new TextBox();
    textBox.HideDuplicates = "GroupName";
    See Also