windowsforms-devexpress-dot-xtralayout-dot-optionsview-2035c425.md
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.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(false)]
public bool EnableIndentsInGroupsWithoutBorders { get; set; }
<DefaultValue(False)>
Public Property EnableIndentsInGroupsWithoutBorders As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if a layout group’s indents are applied when the group’s borders are hidden; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to EnableIndentsInGroupsWithoutBorders |
|---|---|
| LayoutControl |
.OptionsView .EnableIndentsInGroupsWithoutBorders
|
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