windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-rowoperation-dot-execute-x28-devexpress-dot-xtraverticalgrid-dot-rows-dot-baserow-x29.md
Performs the operation on the visited row.
Namespace : DevExpress.XtraVerticalGrid.Rows
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
public abstract void Execute(
BaseRow row
)
Public MustOverride Sub Execute(
row As BaseRow
)
| Name | Type | Description |
|---|---|---|
| row | BaseRow |
A BaseRow descendant representing the processed row against which the operation is performed.
|
When creating the operation class, you must override the Execute method to implement the specific operation performed by the rows iterator. The Execute method is called each time a row is visited. The visited row is passed to this method as the parameter.
Refer to the Tree Traversal topic for more information on using the Rows Iterator.
The following sample code declares the FindRowItemByCaption method that searches the rows collection specified by the rows parameter for a row item with the specified caption. This method returns the first row item found.
The specified collection of rows and their children are traversed using the Rows Iterator ‘s VGridRowsIterator.DoLocalOperation method. The operation performed on the row visited is specified by the FindRowItemOperation object. Once a row item with the specified caption is found, the operation’s RowOperation.CanContinueIteration property is automatically set to false. This indicates that the operation must be stopped. The operation’s RowProperties property represents the row item with the specified caption. null ( Nothing in Visual Basic) is returned if no item is found.
using DevExpress.XtraVerticalGrid;
using DevExpress.XtraVerticalGrid.Rows;
// ...
RowProperties prop = FindRowItemByCaption(vGridControl1, vGridControl1.Rows, "Name");
// searches the specified rows collection for a row item with the specified caption
private RowProperties FindRowItemByCaption(VGridControl vGrid, VGridRows rows ,
string caption){
FindRowItemOperation operation = new FindRowItemOperation(caption);
vGrid.RowsIterator.DoLocalOperation(operation, rows);
return operation.RowProperties;
}
// declares the operation calss
public class FindRowItemOperation : RowOperation {
string caption;
RowProperties props;
public FindRowItemOperation(string caption) : base() {
this.caption = caption;
this.props = null;
}
public override void Execute(BaseRow row) {
for(int i = 0; i < row.RowPropertiesCount; i++){
if(row.GetRowProperties(i).Caption == caption) {
props = row.GetRowProperties(i);
return;
}
}
}
public override bool CanContinueIteration(BaseRow row) {
return (RowProperties == null);
}
public RowProperties RowProperties {
get {
return props;
}
}
}
Imports DevExpress.XtraVerticalGrid
Imports DevExpress.XtraVerticalGrid.Rows
' ...
Dim prop As RowProperties = FindRowItemByCaption(VGridControl1, VGridControl1.Rows, "Name")
' searches the specified rows collection for a row item with the specified caption
Private Function FindRowItemByCaption(ByVal vGrid As VGridControl, ByVal rows As VGridRows, _
ByVal caption As String) As RowProperties
Dim operation As FindRowItemOperation = New FindRowItemOperation(caption)
vGrid.RowsIterator.DoLocalOperation(operation, rows)
Return operation.RowProperties
End Function
' declares the operation calss
Public Class FindRowItemOperation
Inherits RowOperation
Dim caption As String
Dim props As RowProperties
Public Sub New(ByVal caption As String)
Me.caption = caption
Me.props = Nothing
End Sub
Public Overrides Sub Execute(ByVal row As BaseRow)
Dim i As Integer
For i = 0 To row.RowPropertiesCount - 1
If row.GetRowProperties(i).Caption = caption Then
props = row.GetRowProperties(i)
Exit Sub
End If
Next i
End Sub
Public Overrides Function CanContinueIteration(ByVal row As BaseRow) As Boolean
Return RowProperties Is Nothing
End Function
Public ReadOnly Property RowProperties() As RowProperties
Get
Return props
End Get
End Property
End Class
See Also