Click or drag to resize
KaxTabTabs Property
Gets a KaxTabCollection object that contains the child tabs of the current tab.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public KaxTabCollection Tabs { get; }

Property Value

Type: KaxTabCollection
A KaxTabCollection that contains the child tabs of the current tab. By default the collection is empty (the tab has no children).

Implements

IKaxTabContainerTabs
Remarks
Use the Tabs property to access the child tabs of the current tab. You can also use the Tabs property to manage the children of the current tab. You can add, remove or modify tabs from the Tabs collection.
Examples
The following example demonstrates how to programmatically modify the properties of child tabs.
KaxTabControl1.Tabs[0].Tabs[0].Text = "Example";
KaxTabControl1.Tabs[0].Tabs[0].NavigateUrl = "http://www.example.com";
See Also