XRTableRowCollection.Remove(XRTableRow) Method
Removes the specified row from the collection.
Namespace: DevExpress.XtraReports.UI
Assembly: DevExpress.XtraReports.v24.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
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