Skip to main content

MasterRowGetChildListEventArgs.ChildList Property

Gets or sets a detail clone’s record list.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v22.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public IList ChildList { get; set; }

Property Value

Type Description
IList

An object implementing the IList interface and containing records for the detail clone.

Remarks

Use the ChildList property to provide data for an empty detail. Initially the property value is null (Nothing in Visual Basic). You can set the property to any object implementing the IList interface (ArrayList, DataView, etc).

See Also