Initializes a new instance of the
KaxTab class.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
Remarks
Use this constructor to create and initialize a new instance of the
KaxTab class using default values.
Examples
The following example demonstrates how to add tabs to the
KaxTabControl control.
KaxTab tab = new KaxTab();
tab.Text = "News";
tab.NavigateUrl = "~/News.aspx";
KaxTabControl1.Tabs.Add(tab);
Dim tab As New KaxTab()
tab.Text = "News"
tab.NavigateUrl = "~/News.aspx"
KaxTabControl1.Tabs.Add(tab)
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