New to Telerik UI for WinFormsStart a free 30-day trial

Provides event arguments for the TabStripItemCreating event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadDock.dll

Syntax:

C#
public class TabStripItemCreatingEventArgs : EventArgs

Inheritance: objectEventArgsTabStripItemCreatingEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public TabStripItemCreatingEventArgs(TabStripItem tabItem, DockWindow window, bool autoHide)
Parameters:tabItemTabStripItemwindowDockWindowautoHidebool

Properties

[true] if the tab item is going to be used in the auto-hide tab strip, [false] otherwise.

C#
public bool AutoHide { get; }

Gets or sets the instance that is going to be used.

C#
public TabStripItem TabItem { get; set; }

The window associated with the tab item.

C#
public DockWindow Window { get; }