Click or drag to resize
KaxTabControlTabClick Event
Occurs on the server when a tab in the KaxTabControl control is clicked.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public event KaxTabControlEventHandler TabClick

Value

Type: Kettic.AspNet.ControlsKaxTabControlEventHandler
Examples
The following example demonstrates how to use the TabClick event to determine the clicked tab.
protected void KaxTabControl1_TabClick(object sender, Kettic.AspNet.Controls.KaxTabControlEventArgs e)
{
    Response.Write("Clicked tab is " + e.Tab.Text);
}
See Also