Skip to main content
A newer version of this page is available. .
Tab

ASPxButtonEditBase.Buttons Property

Gets the collection of editor buttons.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public EditButtonCollection Buttons { get; }

Property Value

Type Description
EditButtonCollection

An EditButtonCollection object representing the collection of buttons displayed within the editor.

Remarks

This property is a wrapper of the ButtonEditPropertiesBase.Buttons property. Refer to its description for more information.

ASPxButtonEdit:

<dx:ASPxButtonEdit ID="ASPxButtonEdit2" runat="server">
    <ClientSideEvents ButtonClick="OnButtonClick" />
    <Buttons>
        <dx:EditButton Text="AA">
        </dx:EditButton>
        <dx:EditButton Text="BB">
        </dx:EditButton>
    </Buttons>
</dx:ASPxButtonEdit>
See Also