Back to Devexpress

XRControlCollection.Contains(XRControl) Method

xtrareports-devexpress-dot-xtrareports-dot-ui-dot-xrcontrolcollection-dot-contains-x28-devexpress-dot-xtrareports-dot-ui-dot-xrcontrol-x29.md

latest3.7 KB
Original Source

XRControlCollection.Contains(XRControl) Method

Determines whether the specified control is a member of the collection.

Namespace : DevExpress.XtraReports.UI

Assembly : DevExpress.XtraReports.v25.2.dll

NuGet Package : DevExpress.Reporting.Core

Declaration

csharp
public bool Contains(
    XRControl item
)
vb
Public Function Contains(
    item As XRControl
) As Boolean

Parameters

NameTypeDescription
itemXRControl

The XRControl object to locate in the collection.

|

Returns

TypeDescription
Boolean

true if the control is a member of the collection; otherwise, false.

|

Remarks

This method enables you to determine whether the specified control is a member of the collection before attempting to perform operations on the control. This method can be used to confirm that the control has been added to or is still a member of the collection.

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.

csharp
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);
}
vb
Imports System.Drawing
Imports DevExpress.XtraReports.UI
' ...

Public Sub AddControl(ByRef panel As XRPanel, ByRef item As XRControl, _
ByVal x As Integer, ByVal y As Integer)
    ' Add a control to the collection.
    panel.Controls.Add(item)

    ' Set the control's location within the panel.
    item.Location = New Point(x, y)
End Sub

Public Sub RemoveControl(ByRef panel As XRPanel, ByRef item As XRControl)
    ' Check if the control belongs to the collection.
    If (panel.Controls.Contains(item)) Then

         ' Remove the control from the collection.
         panel.Controls.Remove(item)
    End If
End Sub

See Also

XRControlCollection Class

XRControlCollection Members

DevExpress.XtraReports.UI Namespace