Skip to main content
Tab

ASPxUploadControl.ShowAddRemoveButtons Property

Specifies whether the add and remove buttons are visible.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool ShowAddRemoveButtons { get; set; }

Property Value

Type Default Description
Boolean false

true, if the buttons are visible, otherwise, false.

Remarks

Use the ShowAddRemoveButtons property to specify whether the Add and Remove buttons are visible.

<dx:ASPxUploadControl ID="ASPxUploadControl1" runat="server" ShowAddRemoveButtons="True">
    ...
</dx:ASPxUploadControl>

Add and Remove Buttons

Use the ButtonStyle property to customize the appearance of the buttons. The AddButton and the RemoveButton properties allows you to define button image and text.

The ShowAddRemoveButtons property has no effect in advanced upload mode (if the EnableMultiSelect or EnableDragAndDrop property is set to false).

See Also