aspnet-devexpress-dot-web-dot-aspxgantt-dot-ganttstriplinesettings-f818ad97.md
Specifies whether to highlight the current time in the Gantt control.
Namespace : DevExpress.Web.ASPxGantt
Assembly : DevExpress.Web.ASPxGantt.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool ShowCurrentTime { get; set; }
<DefaultValue(False)>
Public Property ShowCurrentTime As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, to highlight the current time; otherwise, false.
|
You can access this nested property as listed below:
| Library | Object Type | Path to ShowCurrentTime |
|---|---|---|
| ASP.NET MVC Extensions | GanttSettings |
.SettingsStripLine .ShowCurrentTime
| | ASP.NET Web Forms Controls | ASPxGantt |
.SettingsStripLine .ShowCurrentTime
|
Set the ShowCurrentTime property to true to highlight the current time and use the CurrentTimeUpdateInterval property to specify the time interval between the current time updates.
Run Demo: ASPxGantt - Strip Lines Run Demo: MVCxGantt - Strip Lines
Web Forms:
<dx:ASPxGantt ID="Gantt" runat="server"...>
...
<SettingsStripLine ShowCurrentTime="true" CurrentTimeUpdateInterval="5" />
</dx:ASPxGantt>
Gantt.SettingsStripLine.ShowCurrentTime = true;
Gantt.SettingsStripLine.CurrentTimeUpdateInterval = 5;
MVC:
settings.SettingsStripLine.ShowCurrentTime = true;
settings.SettingsStripLine.CurrentTimeUpdateInterval = 5;
See Also