Click or drag to resize
KaxTabCollectionAddRange Method
Appends the specified array of KaxTab objects to the end of the current KaxTabCollection.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public void AddRange(
	KaxTab[] tabs
)

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);
See Also