Click or drag to resize
KaxToolBarDropDownButtons Property
Gets a KaxToolBarButtonCollection object that contains the child buttons of the dropdown.

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 dropdown. By default the collection is empty (the dropdown has no buttons).

Implements

IKaxToolBarButtonContainerButtons
Remarks
Use the Buttons property to access the child buttons of the dropdown. You can also use the Buttons property to manage the children of the dropdown. 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.
manageDropDown.Buttons[0].Text = "Users";
manageDropDown.Buttons[0].ImageUrl = "~/ToolbarImages/ManageUsers.gif";
See Also