Skip to main content

XtraTabbedMdiManager.HeaderButtons Property

Gets the options that specify which tab buttons can be displayed within the header panel.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(TabButtons.Default)]
[DXCategory("Behavior")]
public virtual TabButtons HeaderButtons { get; set; }

Property Value

Type Default Description
DevExpress.XtraTab.TabButtons Default

A set of DevExpress.XtraTab.TabButtons flags that specify the visibility of tab buttons.

Remarks

The header panel can display the Close, Next and Prev buttons. The Next and Prev buttons enable end-users to scroll through the pages when the parent form’s width (height) is insufficient to display all the pages simultaneously. The options provided by the DevExpress.XtraTab.TabButtons enumeration allow you to specify which buttons can be displayed.

To specify when the tab buttons must be displayed use the tabbed MDI manager’s XtraTabbedMdiManager.HeaderButtonsShowMode property.

Individual tab pages can also display Close buttons, as specified by the XtraTabbedMdiManager.ClosePageButtonShowMode property.

See Also