aspnet-devexpress-dot-web-dot-aspxgantt-5e3a6478.md
A command column.
Namespace : DevExpress.Web.ASPxGantt
Assembly : DevExpress.Web.ASPxGantt.v25.2.dll
NuGet Package : DevExpress.Web
public class GanttCommandColumn :
GanttColumnBase
Public Class GanttCommandColumn
Inherits GanttColumnBase
A command column provides a set of commands that allow end-users manage tasks, resources and dependencies.
Create a GanttCommandColumn object and add it to the Columns collection to add a command column.
<dx:ASPxGantt ID="Gantt" runat="server" Height="700" ... >
// ...
<SettingsTasksList Width="45%">
<Columns>
<dx:GanttCommandColumn>
<DeleteButton Text="Delete Task" />
<EditButton Text="Modify" />
<NewButton Text="New Task" />
</dx:GanttCommandColumn>
</Columns>
</SettingsTasksList>
</dx:ASPxGantt>
Object StateManager CollectionItem WebColumnBase GanttColumnBase GanttCommandColumn
See Also