Click or drag to resize
KaxToolBarSplitButton Constructor (String)
Initializes a new instance of the KaxToolBarSplitButton class with the specified text data.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public KaxToolBarSplitButton(
	string text
)

Parameters

text
Type: SystemString
The text of the split 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 KaxToolBarSplitButton class using the specified text.

Examples
The following example demonstrates how to add items to KaxToolBar controls.
[New Example]
KaxToolBarSplitButton splitButton = new KaxToolBarSplitButton("News");

KaxToolBar1.Items.Add(splitButton);
[New Example]
Dim splitButton As New KaxToolBarSplitButton("News")

KaxToolBar1.Items.Add(splitButton)
See Also