Skip to main content
A newer version of this page is available. .

DiagramDataBindingControllerBase.ItemsSelector Property

Gets or sets the selector that returns the data field that identifies the collection of nested data items.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v18.2.dll

Declaration

[DiagramCategory(DiagramCategory.Data)]
public virtual IChildrenSelector ItemsSelector { get; set; }

Property Value

Type Description
DevExpress.Diagram.Core.IChildrenSelector

An object implementing the DevExpress.Diagram.Core.IChildrenSelector interface.

Remarks

Use the ItemsSelector property to define a custom logic for choosing the data field that identifies the collection of nested data items. To do this, implement the GetChildren method of the DevExpress.Diagram.Core.IChildrenSelector interface.

See Also