Class TabStripItemCreatingEventArgs
Provides event arguments for the TabStripItemCreating event.
Inheritance
System.Object
System.EventArgs
TabStripItemCreatingEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadDock.dll
Syntax
public class TabStripItemCreatingEventArgs : EventArgs
Constructors
TabStripItemCreatingEventArgs(TabStripItem, DockWindow, Boolean)
Declaration
public TabStripItemCreatingEventArgs(TabStripItem tabItem, DockWindow window, bool autoHide)
Parameters
TabStripItem
tabItem
|
DockWindow
window
|
System.Boolean
autoHide
|
Properties
AutoHide
[true] if the tab item is going to be used in the auto-hide tab strip, [false] otherwise.
Declaration
public bool AutoHide { get; }
Property Value
System.Boolean
|
TabItem
Gets or sets the instance that is going to be used.
Declaration
public TabStripItem TabItem { get; set; }
Property Value
TabStripItem
|
Window
The window associated with the tab item.
Declaration
public DockWindow Window { get; }
Property Value
DockWindow
|