KaxTab Constructor (String, String) |
Initializes a new instance of the
KaxTab class with the
specified text and value data.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic KaxTab(
string text,
string value
)
Public Sub New (
text As String,
value As String
)
public:
KaxTab(
String^ text,
String^ value
)
new :
text : string *
value : string -> KaxTab
Parameters
- text
- Type: SystemString
The text displayed for the tab. The Text property is initialized with the value
of this argument.
- value
- Type: SystemString
The value associated with the tab. The Value property is initialized with the value
of this parameter.
Remarks
Use this constructor to create and initialize a new instance of the
KaxTab class using the specified text and value.
Examples
This example demonstrates how to add tabs to the
KaxTabControl control.
KaxTab tab = new KaxTab("News", "NewsTabValue");
KaxTabControl1.Tabs.Add(tab);
Dim tab As New KaxTab("News", "NewsTabValue")
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