Skip to main content
A newer version of this page is available. .

StripLineCollection Class

A collection of strip lines.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public class StripLineCollection :
    Collection

The following members return StripLineCollection objects:

Remarks

Declaratively:

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsStripLine>
        <StripLines>
            <dx:StripLine Title="Start Time" Start="2019-02-21T08:00:00.000Z"/>
        <StripLines>
    </SettingsStripLine>
</dx:ASPxGantt>

In code:

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

Gantt.SettingsStripLine.StripLines.Add(startLine);

Implements

DevExpress.Utils.IAssignableCollection

Inheritance

See Also