Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Table.ForEachCell(TableCellProcessorDelegate) Method

Performs the specified action on each cell in the table.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

void ForEachCell(
    TableCellProcessorDelegate cellProcessor
)

Parameters

Name Type Description
cellProcessor TableCellProcessorDelegate

The TableCellProcessorDelegate delegate to perform on each cell in a table.

Remarks

The TableCellProcessorDelegate is a delegate to a method that performs an action on the cell passed to it. Each cell is individually passed to the TableCellProcessorDelegate.

Note

You can also use anonymous methods as delegates.

Imports DevExpress.XtraRichEdit
Imports DevExpress.XtraRichEdit.API.Native
Imports DevExpress.XtraRichEdit.Commands
        Private Sub IterateCells(ByVal _table As Table)
            _table.BeginUpdate()
            _table.ForEachCell(New TableCellProcessorDelegate(AddressOf MakeMultiplicationCell))
            _table.EndUpdate()
        End Sub
        Private Sub MakeMultiplicationCell(ByVal cell As TableCell, ByVal i As Integer, ByVal j As Integer)
            richEditControl1.Document.InsertText(cell.Range.Start, String.Format("{0}*{1} = {2}", i+2, j+2, (i+2) * (j+2)))
        End Sub

The following code snippets (auto-collected from DevExpress Examples) contain references to the ForEachCell(TableCellProcessorDelegate) 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.

See Also