Back to Devexpress

DayView.TimeMarkerStyle Property

windowsforms-devexpress-dot-xtrascheduler-dot-dayview-0a1d17a8.md

latest2.5 KB
Original Source

DayView.TimeMarkerStyle Property

Specifies the style of a Time Marker - an element inside the Time Ruler that marks the current time.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
[DefaultValue(TimeMarkerStyle.Default)]
[XtraSerializableProperty]
public TimeMarkerStyle TimeMarkerStyle { get; set; }
vb
<DefaultValue(TimeMarkerStyle.Default)>
<XtraSerializableProperty>
Public Property TimeMarkerStyle As TimeMarkerStyle

Property Value

TypeDefaultDescription
DevExpress.XtraScheduler.TimeMarkerStyleDefault

The Time Marker style.

|

Remarks

This property accepts three flag enumeration values:

  • Default - the Time Marker style depends on the active skin;
  • Line - the Time Marker is a line inside a Time Ruler cell;
  • Appearance - the Scheduler changes font and/or background appearance of a Time Ruler cell.

You can enable both “Line” and “Appearance” styles at the same time:

csharp
schedulerControl.DayView.TimeMarkerStyle = TimeMarkerStyle.Line | TimeMarkerStyle.Appearance;
vb
schedulerControl.DayView.TimeMarkerStyle = TimeMarkerStyle.Line Or TimeMarkerStyle.Appearance

The figure below illustrates all possible TimeMarkerStyle property values when the vector “Office 2019 Colorful” skin is active.

Time Marker visibility is managed by the TimeMarkerVisibility property.

Time Indicator visibility depends on the View.TimeIndicatorDisplayOptions.Visibility property value.

See Also

DayView Class

DayView Members

DevExpress.XtraScheduler Namespace