Namespace: Kettic.AspNet.ControlsAssembly: 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; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Tabs As KaxTabCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
virtual property KaxTabCollection^ Tabs {
KaxTabCollection^ get () sealed;
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
abstract Tabs : KaxTabCollection with get
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
override Tabs : KaxTabCollection with 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
IKaxTabContainerTabsRemarks
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";
KaxTabControl1.Tabs(0).Tabs(0).Text = "Example"
KaxTabControl1.Tabs(0).Tabs(0).NavigateUrl = "http://www.example.com"
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also