xtrareports-devexpress-dot-xtrareports-dot-ui-dot-xrlabel-1a2938a1.md
Specifies whether to process duplicate values of the XRControl.Text, or XRControl.Tag property.
Namespace : DevExpress.XtraReports.UI
Assembly : DevExpress.XtraReports.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
[Browsable(true)]
public override ProcessDuplicatesTarget ProcessDuplicatesTarget { get; set; }
<Browsable(True)>
Public Overrides Property ProcessDuplicatesTarget As ProcessDuplicatesTarget
| Type | Description |
|---|---|
| ProcessDuplicatesTarget |
A ProcessDuplicatesTarget enumeration value.
|
Available values:
| Name | Description |
|---|---|
| Value |
The control’s field data values are considered when the report processes duplicate values.
| | Tag |
The control’s Tag property values are considered when the report processes duplicate values.
|
The processing of report controls with duplicate values is defined by the XRLabel.ProcessDuplicatesMode property.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ProcessDuplicatesTarget property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
reporting-winforms-process-duplicate-values/CS/ProcessDuplicatesTarget/ProductReport.cs#L26
this.xrTableCell2.ProcessDuplicatesMode = ProcessDuplicatesMode.Merge;
this.xrTableCell2.ProcessDuplicatesTarget = DevExpress.XtraReports.UI.ProcessDuplicatesTarget.Tag;
this.ShowPreviewDialog();
reporting-winforms-process-duplicate-values/VB/ProcessDuplicatesTarget/ProductReport.vb#L23
Me.xrTableCell2.ProcessDuplicatesMode = ProcessDuplicatesMode.Merge
Me.xrTableCell2.ProcessDuplicatesTarget = DevExpress.XtraReports.UI.ProcessDuplicatesTarget.Tag
Me.ShowPreviewDialog()
See Also