Skip to main content

Table.ForEachCell(TableCellProcessorDelegate) Method

Performs the specified action on each cell in the table.

Namespace: DevExpress.XtraRichEdit.API.Native

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

#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.

See Also