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

LayoutGroup.AllowSplitters Property

Gets or sets whether item resizing is enabled for the group’s children. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v19.1.dll

Declaration

public bool? AllowSplitters { get; set; }

Property Value

Type Description
Nullable<Boolean>

A Nullable Boolean value that specifies whether item resizing is enabled.

Remarks

If item resizing is enabled, an end-user can resize items using the mouse:

ItemResizing

If the AllowSplitters property is set to null, item resizing is enabled for a LayoutGroup in the following cases:

If the AllowSplitters property is explicitly set to true, item resizing is always enabled for the LayoutGroup’s items. If the AllowSplitters property is explicitly set to false, item resizing is always disabled.

To get the actual value that specifies whether item resizing is enabled at the current point in time, read the LayoutGroup.IsSplittersEnabled property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AllowSplitters property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also