Skip to main content
A newer version of this page is available. .

XRControlCollection Class

A collection of XRControl objects.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public class XRControlCollection :
    XRControlCollectionBase

The following members return XRControlCollection objects:

Remarks

The XRControlCollection.Add and XRControlCollection.Remove methods enable you to add and remove individual controls from the collection. You can determine if the control is a member of the collection by passing the control into the XRControlCollection.Contains method. To get the index value of the control in the collection, pass this control into the XRControlCollection.IndexOf method.

Example

The following example shows two methods that use the XRControlCollection.Add, XRControlCollection.Remove and XRControlCollection.Contains methods of the XRControlCollection class. The first method adds a control to the control collection of the XRPanel object at the specified location. The second method checks if the specified control belongs to the specified collection, and if it does, it removes the control from the collection.

using System.Drawing;
using DevExpress.XtraReports.UI;
// ...

public void AddControl(XRPanel panel, XRControl item, int x, int y) {
    // Add a control to the collection.
    panel.Controls.Add(item);

    // Set the control's location within the panel.
    item.Location = new Point(x, y);
}

public void RemoveControl(XRPanel panel, XRControl item) {
    // Check if the control belongs to the collection.
    if(panel.Controls.Contains(item))

        // Remove the control from the collection.
        panel.Controls.Remove(item);
}
See Also