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

VGridRowsIterator.DoLocalOperation(RowOperation, BaseRow) Method

Performs the specified operation on the specified row and its child rows.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

public virtual void DoLocalOperation(
    RowOperation operation,
    BaseRow row
)

Parameters

Name Type Description
operation RowOperation

A RowOperation object representing the operation to perform.

row BaseRow

A BaseRow object to be processed.

Remarks

The DoLocalOperation method calls the specified operation for the specified row and its child rows.

The DoLocalOperation method does nothing in the following cases:

  • the operation or row parameter value is a null reference;
  • the specified row belongs to another vertical grid control.

Refer to the Tree Traversal topic, for details on using the Rows Iterator.

See Also