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

XRTableRowCollection.Contains(XRTableRow) Method

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

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

public bool Contains(
    XRTableRow row
)

Parameters

Name Type Description
row XRTableRow

The XRTableRow object to locate in the collection.

Returns

Type Description
Boolean

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

Remarks

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

See Also