windowsforms-devexpress-dot-xtralayout-dot-optionsview-7c36bcc7.md
Gets or sets the default group border and caption paint style.
Namespace : DevExpress.XtraLayout
Assembly : DevExpress.XtraLayout.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(GroupStyle.Inherited)]
public GroupStyle GroupStyle { get; set; }
<DefaultValue(GroupStyle.Inherited)>
Public Property GroupStyle As GroupStyle
| Type | Default | Description |
|---|---|---|
| DevExpress.Utils.GroupStyle | Inherited |
A value that specifies the group border and caption paint style.
|
You can access this nested property as listed below:
| Object Type | Path to GroupStyle |
|---|---|
| LayoutControl |
.OptionsView .GroupStyle
|
Layout groups support three paint styles for group borders and captions:
Use the LayoutControl.OptionsView.GroupStyle property to specify the default group border and caption paint style for all layout groups. If the GroupStyle property is set to GroupStyle.Inherited , the default paint style is dependent on the currently applied skin.
You can override the default paint style for individual groups using their LayoutGroup.GroupStyle properties.
See Also