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

XRTableRowCollection.Remove(XRTableRow) Method

Removes the specified row from the collection.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

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

Declaration

public void Remove(
    XRTableRow row
)

Parameters

Name Type Description
row XRTableRow

The XRTableRow object to remove from the collection.

Remarks

When a row is removed from the collection of table rows, all subsequent rows are moved up one position in the collection.

Note

If you’re creating an XRTable object at runtime and manually modify the XRTableRowCollection collection, which can be accessed via the XRTable.Rows property, it is always required to enclose this code inside the XRTable.BeginInit and XRTable.EndInit method calls.

See Also