KaxToolBarDropDown Constructor (String) |
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public KaxToolBarDropDown(
string text
)
Public Sub New (
text As String
)
public:
KaxToolBarDropDown(
String^ text
)
new :
text : string -> KaxToolBarDropDown
Parameters
- text
- Type: SystemString
The text of the dropdown. The Text property is set to the value
of this parameter.
Remarks
Use this constructor to create and initialize a new instance of the
KaxToolBarDropDown class using the specified text.
Examples
The following example demonstrates how to add items to
KaxToolBar controls.
KaxToolBarDropDown dropdown = new KaxToolBarDropDown("Manage");
KaxToolBar1.Items.Add(dropdown);
Dim dropdown As New KaxToolBarDropDown("Manage")
KaxToolBar1.Items.Add(dropdown)
See Also