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

TabControlTabHidingEventArgs Class

Provides data for the DXTabControl.TabHiding event.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v18.2.dll

Declaration

public class TabControlTabHidingEventArgs :
    TabControlCommonCancelEventArgsBase

Remarks

The DXTabControl.TabHiding event is fired before a tab item is hidden, allowing you to cancel the action. To do this, set the event parameter’s TabControlTabHiddingEventArgs.Cancel property to true. Use the TabControlTabHiddingEventArgs.TabIndex property to obtain the index of the tab item that is being hidden.

After the tab item has been hidden, the DXTabControl.TabHidden event is fired.

See Also