'Declaration <DescriptionAttribute("Raised when a new tab-group is being added.")> Public Event AddingGroup As AddingGroupEventHandler
'Usage Dim instance As TabbedMdiManager Dim handler As AddingGroupEventHandler AddHandler instance.AddingGroup, handler
[Description("Raised when a new tab-group is being added.")] public event AddingGroupEventHandler AddingGroup
Event Data
The event handler receives an argument of type AddingGroupEventArgs containing data related to this event. The following AddingGroupEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Index | Gets the index at which the TabGroup is being added. |
TabGroup | Gets the TabbedMdiTabGroup being added to the TabbedMdiManager. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also