Click or drag to resize
KaxToolBarItemCollectionAdd Method
Appends the specified KaxToolBarItem object to the end of the current KaxToolBarItemCollection.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public void Add(
	KaxToolBarItem item
)

Parameters

item
Type: Kettic.AspNet.ControlsKaxToolBarItem
The KaxToolBarItem to append to the end of the current KaxToolBarItemCollection.
Examples
The following example demonstrates how to programmatically add toolbar buttons in a KaxToolBar control.
KaxToolBarButton createNewButton = new KaxToolBarButton("CreateNew");
KaxToolBar1.Items.Add(createNewButton);
See Also