Skip to main content

LayoutGroup.AllowExpand Property

Gets or sets whether the LayoutGroup supports the expand functionality.

Namespace: DevExpress.UI.Xaml.Layout

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public DefaultBoolean AllowExpand { get; set; }

Property Value

Type Description
DefaultBoolean

true if the LayoutGroup supports the expand functionality; otherwise, false.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by a control’s current setting. The default value is automatically set for a control if an end-user doesn’t specify a value.

Remarks

An expandable LayoutGroup contains an Expand button in its header, allowing an end-user to expand/collapse the group:

LayoutGroup-Expandable

To expand/collapse the group in code, use the LayoutGroup.Expanded property.

See Also