RowData Class
In This Article
Contains information about a data row.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.1.Core.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
#Remarks
A RowData object contains information about a data row and serves as a data context (binding source) for the following style and templates: TableView.RowStyle, TableView.DataRowTemplate and TableView.PrintRowTemplate.
Row elements contain RowData
objects in their DataContext.
Use the following binding paths to access cell values and ViewModel properties:
Row.[YourPropertyName]
- access a property of an object in the ItemsSource collection;DataContext.[FieldName]
- access a column value;View.DataContext.[YourPropertyName]
- access a property in a grid’s ViewModel.
#Inheritance
Object
DispatcherObject
DependencyObject
DataObjectBase
RowDataBase
DevExpress.Xpf.Grid.ColumnsRowDataBase
See Also