Skip to main content
.NET 6.0+

XPDataView.Item[Int32] Property

Provides indexed access to individual records within the data view.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public DataViewRecord this[int index] { get; }

Parameters

Name Type Description
index Int32

A zero-based integer which specifies the record’s position within the data view. If it’s negative or exceeds the last available index, an exception is thrown.

Property Value

Type Description
DataViewRecord

A DataViewRecord object which represents the record at the specified position.

See Also