Skip to main content

StripLineCollection.Add(StripLine) Method

Adds a strip line object to the collection.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v23.2.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