Skip to main content
A newer version of this page is available. .

DXTabControl.TabInserting Event

Fires before a tab item is inserted, and allows you to prevent this action.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v19.1.dll

Declaration

public event TabControlTabInsertingEventHandler TabInserting

Event Data

The TabInserting event's data class is DevExpress.Xpf.Core.TabControlTabInsertingEventArgs.

Remarks

To prevent a tab item from being inserted during a drag and drop action, set the event’s Cancel parameter to true. After an item has been inserted/dropped, the DXTabControl.TabInserted event fires.

See Also