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

GanttCommandColumn.DeleteButton Property

Gets the Delete button’s settings.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v19.2.dll

Declaration

public TreeListCommandColumnButton DeleteButton { get; }

Property Value

Type Description
TreeListCommandColumnButton

The button settings.

Remarks

The Delete button deletes the current task. Use the DeleteButton property to specify the button’s image, caption and visibility.

<dx:ASPxGantt ID="Gantt" runat="server" Height="700" ... >
    // ...
    <SettingsTasksList Width="45%">
        <Columns>
            <dx:GanttCommandColumn Width="90">
                <DeleteButton Visible="true" />
            </dx:GanttCommandColumn>
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>
See Also