Skip to main content

GanttSpinEditColumn Class

A column that displays a spin editor.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public class GanttSpinEditColumn :
    GanttDataColumn

Remarks

Create a GanttSpinEditColumn object and add it to the Columns collection to add a column that displays a spin editor.

Use the PropertiesSpinEdit property to customize the column editor’s appearance and behavior settings.

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsTasksList >
        <Columns>
            <dx:GanttSpinEditColumn FieldName="Count">
                <PropertiesSpinEdit>
                    ...
                </PropertiesSpinEdit>
            </dx:GanttSpinEditColumn>
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Examples

Online Demos

See Also