Skip to main content

LayoutGroup.GetArrangedLogicalChildren(Boolean) Method

Returns a collection of child items in display order.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v23.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

Declaration

public FrameworkElements GetArrangedLogicalChildren(
    bool visibleOnly
)

Parameters

Name Type Description
visibleOnly Boolean

true to return only visible items; false to include visible and hidden items.

Returns

Type Description
DevExpress.Xpf.Core.FrameworkElements

A FrameworkElements collection that contains child items in the order they are displayed within the group.

Remarks

This method is in effect when the LayoutGroup is not represented as a tabbed group. See the LayoutGroup.View property to learn more.

Items in a group may be displayed in an order different than the order in which they have been added to the group. The visual order of the items is affected by their HorizontalAlignment properties (if the group’s LayoutGroup.Orientation is Horizontal) and by their VerticalAlignment properties (if the group’s LayoutGroup.Orientation is Vertical).

See Also