Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

OptionsView.EnableIndentsInGroupsWithoutBorders Property

Gets or sets whether a layout group’s indents, specified by its BaseLayoutItem.Spacing and BaseLayoutItem.Padding properties, are applied when the group’s borders are hidden.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(false)]
public bool EnableIndentsInGroupsWithoutBorders { get; set; }

#Property Value

Type Default Description
Boolean false

true if a layout group’s indents are applied when the group’s borders are hidden; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to EnableIndentsInGroupsWithoutBorders
LayoutControl
.OptionsView .EnableIndentsInGroupsWithoutBorders

#Remarks

The visibility of a layout group’s borders is controled by the LayoutGroup.GroupBordersVisible property. By default, if the borders are hidden, the group’s indents that are specified by its BaseLayoutItem.Spacing and BaseLayoutItem.Padding properties are not applied. Setting the EnableIndentsInGroupsWithoutBorders property to true displays the group’s indents when the borders are visible.

See Also