Skip to main content
All docs
V20.1

StripLineCollection.CurrentDateTimeTitle Property

Specifies a title for the strip line that highlights the current time.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public string CurrentDateTimeTitle { get; set; }

Property Value

Type Description
String

The title.

Remarks

Declaratively:

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsStripLine ShowCurrentTime="true" CurrentDateTimeTitle="Current Time" />
</dx:ASPxGantt>

In code:

Gantt.SettingsStripLine.ShowCurrentTime = true; 
Gantt.SettingsStripLine.CurrentDateTimeTitle = "Current Time"; 
See Also