Skip to main content

CustomHeaderButtonCollection.Add(CustomHeaderButton) Method

Adds a custom button to the current button collection.

Namespace: DevExpress.XtraTab.Buttons

Assembly: DevExpress.XtraEditors.v25.1.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual int Add(
    CustomHeaderButton button
)

Parameters

Name Type Description
button CustomHeaderButton

A CustomHeaderButton object that is the button that will be added.

Returns

Type Description
Int32

An integer value that is a custom button’s index in the collection.

Example

The example demonstrates how to add two custom header buttons to the CustomHeaderButton collection.

using DevExpress.XtraTab.Buttons;
using DevExpress.XtraEditors.Controls;

xtraTabControl1.CustomHeaderButtons.Add(new CustomHeaderButton(ButtonPredefines.Combo));
xtraTabControl1.CustomHeaderButtons.Add(new CustomHeaderButton(ButtonPredefines.Right));
See Also