KaxTabControlTabs Property |
Gets a
KaxTabCollection object that contains the root tabs of the current KaxTabControl control.
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 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";
KaxTabControl1.Tabs(0).Text = "Example"
KaxTabControl1.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