Skip to main content

CustomHeaderButtonCollection.Add(CustomHeaderButton) Method

Adds a custom button to the current button collection.

Namespace: DevExpress.XtraTab.Buttons

Assembly: DevExpress.XtraEditors.v23.2.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));

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Add(CustomHeaderButton) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also