Table.ForEachRow(TableRowProcessorDelegate) Method
Enables you to specify a delegate which will be executed for each row of a table.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
cellProcessor | TableRowProcessorDelegate | A TableRowProcessorDelegate delegate. |
Remarks
Tip
You can also use anonymous methods as delegates.
Example
The following code snippet paints the third column with a light cyan color.
Table table = document.Tables.Create(document.Range.Start, 3, 10);
table.BeginUpdate();
// Change cell background color and vertical alignment in the third column.
table.ForEachRow(new TableRowProcessorDelegate(ChangeColumnAppearanceHelper.ChangeColumnColor));
table.EndUpdate();
class ChangeColumnAppearanceHelper
{
public static void ChangeColumnColor(TableRow row, int rowIndex)
{
row[2].BackgroundColor = System.Drawing.Color.LightCyan;
row[2].VerticalAlignment = TableCellVerticalAlignment.Center;
}
}
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the ForEachRow(TableRowProcessorDelegate) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.