Skip to main content

LayoutGroupBase.ItemHeadersAlignment Property

Gets or sets how LayoutItem headers are aligned within the current LayoutGroupBase object.

Namespace: DevExpress.UI.Xaml.Layout.Base

Assembly: DevExpress.UI.Xaml.Layout.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public HeadersAlignment ItemHeadersAlignment { get; set; }

Property Value

Type Description
HeadersAlignment

A HeadersAlignment value that specifies how LayoutItem headers are aligned within the current LayoutGroupBase object.

Available values:

Name Description
Default

The headers of layout items within the specified group are resized according to the parent group’s LayoutGroupBase.ItemHeadersAlignment setting.

Local

The headers of layout items within the specified group have the same width, matching the maximum header width. This ensures that the content portions of LayoutItems are equally aligned. Layout items in nested groups are also taken into account if these groups have their header alignment set to Default.

None

The headers of layout items within the specified group are independently resized to the minimum width that allows the text to be displayed in its entirety.

Remarks

Use the ItemHeadersAlignment property to control how LayoutItem headers are aligned within a LayoutGroupBase object. To override this setting for individual items, use the LayoutItem.HeaderAlignment property.

See Also