ViewRecord Class
In This Article
A record within the XPView.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
#Declaration
#Related API Members
The following members return ViewRecord objects:
#Remarks
XPView view = new XPView(unitOfWork, typeof(Person));
view.AddProperty("Name", "Concat([FirstName], ' ', [LastName])");
foreach(ViewRecord record in view) {
Console.WriteLine(record["Name"]);
}
See Also