Click or drag to resize
KaxTabCollectionAdd Method
Appends the specified KaxTab object 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 Add(
	KaxTab tab
)

Parameters

tab
Type: Kettic.AspNet.ControlsKaxTab
The KaxTab to append to the end of the current KaxTabCollection.
Examples
The following example demonstrates how to programmatically add tabs in a KaxTabControl control.
KaxTab newsTab = new KaxTab("News");
KaxTabControl1.Tabs.Add(newsTab);
See Also