LayoutGroup.HeaderButtonsLocation Property
Gets or sets whether the group header buttons are displayed before or after text.
Namespace: DevExpress.XtraLayout
Assembly: DevExpress.XtraLayout.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(GroupElementLocation.Default)]
[DXCategory("Behavior")]
[XtraSerializableProperty(XtraSerializationVisibility.Visible)]
public GroupElementLocation HeaderButtonsLocation { get; set; }
Property Value
Type | Default | Description |
---|---|---|
GroupElementLocation | Default | The position of the group header button relative to the header text. |
Available values:
Name | Description |
---|---|
Default | Specifies the default position of an element relative to a text label. Currently, the Default option is equivalent to the BeforeText option. |
BeforeText | Displays an element before a text label. |
AfterText | Displays an element after a text label. |
Remarks
The HeaderButtonsLocation property affects the position of the following buttons within the group header:
- Group expand button (LayoutGroup.ExpandButtonVisible)
- Custom buttons (LayoutGroup.CustomHeaderButtons).
See Also