windowsforms-devexpress-dot-xtraverticalgrid-dot-events-dot-roweventargs.md
Gets the processed row.
Namespace : DevExpress.XtraVerticalGrid.Events
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[CLSCompliant(false)]
public BaseRow Row { get; }
<CLSCompliant(False)>
Public ReadOnly Property Row As BaseRow
| Type | Description |
|---|---|
| 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
private void propertyGridControl1_CellValueChanged(object sender, DevExpress.XtraVerticalGrid.Events.CellValueChangedEventArgs e) {
if((e.Row as EditorRow)?.Properties.FieldName == "IsBound")
UpdateRowVisibility();
See Also