Back to Devexpress

RowEventArgs.Row Property

windowsforms-devexpress-dot-xtraverticalgrid-dot-events-dot-roweventargs.md

latest2.3 KB
Original Source

RowEventArgs.Row Property

Gets the processed row.

Namespace : DevExpress.XtraVerticalGrid.Events

Assembly : DevExpress.XtraVerticalGrid.v25.2.dll

NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

Declaration

csharp
[CLSCompliant(false)]
public BaseRow Row { get; }
vb
<CLSCompliant(False)>
Public ReadOnly Property Row As BaseRow

Property Value

TypeDescription
BaseRow

A BaseRow descendant representing the processed row.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Row property.

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.

dashboard-constant-lines/CS/ConstantLineExtension.Win/ConstantLineDialog.cs#L70

csharp
private void propertyGridControl1_CellValueChanged(object sender, DevExpress.XtraVerticalGrid.Events.CellValueChangedEventArgs e) {
    if((e.Row as EditorRow)?.Properties.FieldName == "IsBound")
        UpdateRowVisibility();

See Also

RowEventArgs Class

RowEventArgs Members

DevExpress.XtraVerticalGrid.Events Namespace