Class DockTabStripNeededEventArgs
Represents the arguments associated with a DockTabStripNeeded event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Docking
Assembly: Telerik.WinControls.RadDock.dll
Syntax
public class DockTabStripNeededEventArgs : EventArgs
Constructors
DockTabStripNeededEventArgs(DockType)
Initializes a new instance of the DockTabStripNeededEventArgs class.
Declaration
public DockTabStripNeededEventArgs(DockType type)
Parameters
DockType
type
|
Properties
DockType
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.
Declaration
public DockType DockType { get; }
Property Value
DockType
|
ShowCloseButton
Determines whether the ShowItemCloseButton will be true for the associated DockTabStrip instance.
Declaration
public bool? ShowCloseButton { get; set; }
Property Value
System.Nullable<System.Boolean>
|
ShowPinButton
Determines whether the ShowItemPinButton will be true for the associated DocumentTabStrip instance. Works only for DocumentTabStrip.
Declaration
public bool? ShowPinButton { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Strip
Gets or sets the DockTabStrip instance to be used.
Declaration
public DockTabStrip Strip { get; set; }
Property Value
DockTabStrip
|
TabStripAlignment
Gets or sets the alignment of the TabStripElement within the TabStrip instance.
Declaration
public TabStripAlignment TabStripAlignment { get; set; }
Property Value
TabStripAlignment
|
TabStripTextOrientation
Gets or sets the alignment of the TabStripElement within the TabStrip instance.
Declaration
public TabStripTextOrientation TabStripTextOrientation { get; set; }
Property Value
TabStripTextOrientation
|
TabStripVisible
Determines whether the TabStripElement should be visible.
Declaration
public bool? TabStripVisible { get; set; }
Property Value
System.Nullable<System.Boolean>
|