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

GanttStripLineSettings.CurrentTimeTitle Property

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

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string CurrentTimeTitle { get; set; }

Property Value

Type Default Description
String String.Empty

The title.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to CurrentTimeTitle
ASP.NET Controls and MVC Extensions ASPxGantt
.SettingsStripLine .CurrentTimeTitle
ASP.NET MVC Extensions GanttSettings
.SettingsStripLine .CurrentTimeTitle
MVCxGantt
.SettingsStripLine .CurrentTimeTitle

Remarks

Declaratively:

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsStripLine ShowCurrentTime="true" CurrentTimeTitle="my_title" />
</dx:ASPxGantt>

In code:

Gantt.SettingsStripLine.ShowCurrentTime = true; 
Gantt.SettingsStripLine.CurrentTimeTitle = "my_title"; 

Examples

Online Demos

See Also