Skip to main content
All docs
V25.1
  • StripLineCollection.Add(StripLine) Method

    Adds a strip line object to the collection.

    Namespace: DevExpress.Web.ASPxGantt

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

    NuGet Package: DevExpress.Web

    Declaration

    public void Add(
        StripLine stripLine
    )

    Parameters

    Name Type Description
    stripLine StripLine

    A strip line.

    Remarks

    StripLine startLine = new StripLine();
    startLine.Title = "Start Time";
    startLine.Start = new DateTime(2019, 02, 21, 08, 00, 00); 
    
    Gantt.SettingsStripLine.StripLines.Add(startLine);
    

    Examples

    See Also