Skip to main content
All docs
V25.1
  • GanttCommandColumn.DeleteButton Property

    Gets the Delete button’s settings.

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v25.1.dll

    NuGet Package: DevExpress.Web

    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>
    

    Examples

    Online Demos

    See Also