Click or drag to resize
KaxTabControlTabs Property
Gets a KaxTabCollection object that contains the root tabs of the current KaxTabControl control.

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 root tabs of the current KaxTabControl control. By default the collection is empty (KaxTabControl has no children).

Implements

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