GanttStripLineSettings.CurrentTimeTitle Property
In This Article
Specifies the title of a strip line that highlights the current time.
Namespace: DevExpress.Web.ASPxGantt
Assembly: DevExpress.Web.ASPxGantt.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
String | String. |
The title. |
#Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to Current |
---|---|---|
ASP. |
Gantt |
|
ASP. |
ASPx |
|
#Remarks
Web Forms:
<dx:ASPxGantt ID="Gantt" runat="server"...>
...
<SettingsStripLine ShowCurrentTime="true" CurrentTimeTitle="Current Time" />
</dx:ASPxGantt>
Gantt.SettingsStripLine.ShowCurrentTime = true;
Gantt.SettingsStripLine.CurrentTimeTitle = "Current Time";
MVC:
settings.SettingsStripLine.ShowCurrentTime = true;
settings.SettingsStripLine.CurrentTimeTitle= "Current Time";
#Examples
See Also