KaxToolBarButton Constructor (String) |
Initializes a new instance of the
KaxToolBarButton class with the
specified text data.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic KaxToolBarButton(
string text
)
Public Sub New (
text As String
)
public:
KaxToolBarButton(
String^ text
)
new :
text : string -> KaxToolBarButton
Parameters
- text
- Type: SystemString
The text of the button. The Text property is set to the value
of this parameter.
Remarks
Use this constructor to create and initialize a new instance of the
KaxToolBarButton class using the specified text.
Examples
The following example demonstrates how to add items to
KaxToolBar controls.
KaxToolBarButton button = new KaxToolBarButton("Create New");
button.CommandName = "CreateNew";
button.ImageUrl = "~/ToolBarImages/CreateNew.gif";
KaxToolBar1.Items.Add(button);
Dim button As New KaxToolBarButton("Create New")
button.CommandName = "CreateNew"
button.ImageUrl = "~/ToolBarImages/CreateNew.gif"
KaxToolBar1.Items.Add(button)
See Also