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

Represents the arguments associated with a DockTabStripNeeded event.

Definition

Namespace:Telerik.WinControls.UI.Docking

Assembly:Telerik.WinControls.RadDock.dll

Syntax:

C#
public class DockTabStripNeededEventArgs : EventArgs

Inheritance: objectEventArgsDockTabStripNeededEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the DockTabStripNeededEventArgs class.

C#
public DockTabStripNeededEventArgs(DockType type)
Parameters:typeDockType

Properties

Gets the DockType of the needed strip.
If the value is ToolWindow then a ToolTabStrip instance is needed. If the value is Document then a DocumentTabStrip instance is needed.

C#
public DockType DockType { get; }

Determines whether the ShowItemCloseButton will be true for the associated DockTabStrip instance.

C#
public bool? ShowCloseButton { get; set; }

Determines whether the ShowItemPinButton will be true for the associated DocumentTabStrip instance. Works only for DocumentTabStrip.

C#
public bool? ShowPinButton { get; set; }

Gets or sets the DockTabStrip instance to be used.

C#
public DockTabStrip Strip { get; set; }

Gets or sets the alignment of the TabStripElement within the TabStrip instance.

C#
public TabStripAlignment TabStripAlignment { get; set; }

Gets or sets the alignment of the TabStripElement within the TabStrip instance.

C#
public TabStripTextOrientation TabStripTextOrientation { get; set; }

Determines whether the TabStripElement should be visible.

C#
public bool? TabStripVisible { get; set; }