KaxTabCollectionAddRange Method |
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic void AddRange(
KaxTab[] tabs
)
Public Sub AddRange (
tabs As KaxTab()
)
public:
void AddRange(
array<KaxTab^>^ tabs
)
member AddRange :
tabs : KaxTab[] -> unit
Parameters
- tabs
- Type: Kettic.AspNet.ControlsKaxTab
The array of KaxTab o append to the end of the current
KaxTabCollection.
Examples
The following example demonstrates how to use the
AddRange method
to add multiple tabs in a single step.
KaxTab[] tabs = new KaxTab[] { new KaxTab("First"), new KaxTab("Second"), new KaxTab("Third") };
KaxTabControl1.Tabs.AddRange(tabs);
Dim tabs() As KaxTab = {New KaxTab("First"), New KaxTab("Second"), New KaxTab("Third")}
KaxTabControl1.Tabs.AddRange(tabs)
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