Click or drag to resize
KaxToolBarSplitButtonButtons Property
Gets a KaxToolBarButtonCollection object that contains the child buttons of the split button.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public KaxToolBarButtonCollection Buttons { get; }

Property Value

Type: KaxToolBarButtonCollection
A KaxToolBarButtonCollection that contains the child buttons of the split button. By default the collection is empty (the split button has no buttons).

Implements

IKaxToolBarButtonContainerButtons
Remarks
Use the Buttons property to access the child buttons of the split button. You can also use the Buttons property to manage the children of the current tab. You can add, remove or modify buttons from the Buttons collection.
Examples
The following example demonstrates how to programmatically modify the properties of child buttons.
registerPurchaseSplitButton.Buttons[0].Text = "Cache Purchase";
registerPurchaseSplitButton.Buttons[0].ImageUrl = "~/ToolBarImages/RegisterCachePurchase.gif";

registerPurchaseSplitButton.Buttons[1].Text = "Check Purchase";
registerPurchaseSplitButton.Buttons[1].ImageUrl = "~/ToolBarImages/RegisterCheckPurchase.gif";
See Also