Class TabGroupCreatedEventArgs
Provides data for the TabGroupCreated event of the DockingManager control.
Inheritance
System.Object
System.EventArgs
TabGroupCreatedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TabGroupCreatedEventArgs : EventArgs
Constructors
TabGroupCreatedEventArgs(Control, Orientation, TabHost[], TabControlAdv, TabControlAdv)
Initializes a new instance of the TabGroupCreatingEventArgs class.
Declaration
public TabGroupCreatedEventArgs(Control targetItem, Orientation orientation, TabHost[] tabGroups, TabControlAdv previousTabGroup, TabControlAdv currentTabGroup)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.Control | targetItem | The control is used to create tab groups |
System.Windows.Forms.Orientation | orientation | Specifies the tab group orientation |
TabHost[] | tabGroups | |
TabControlAdv | previousTabGroup | |
TabControlAdv | currentTabGroup |
Properties
CurrentTabGroup
Gets current document tab group of tab item which trigger tab group creation.
Declaration
public TabControlAdv CurrentTabGroup { get; }
Property Value
Type |
---|
TabControlAdv |
Orientation
Gets the Orientation of newly created document tab group.
Declaration
public Orientation Orientation { get; }
Property Value
Type | Description |
---|---|
System.Windows.Forms.Orientation | The Orientation |
PreviousTabGroup
Gets previous document tab group of tab item which trigger tab group creation.
Declaration
public TabControlAdv PreviousTabGroup { get; }
Property Value
Type |
---|
TabControlAdv |
TabGroups
Gets the collections of document tab groups in DockingManager.
Declaration
public TabHost[] TabGroups { get; }
Property Value
Type |
---|
TabHost[] |
TargetItem
Gets the target item which added as new document tab group.
Declaration
public Control TargetItem { get; }
Property Value
Type | Description |
---|---|
System.Windows.Forms.Control | The target item. |