Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Win.Scheduler

#Declaration

[DefaultValue(TimeMarkerStyle.Default)]
[XtraSerializableProperty]
public TimeMarkerStyle TimeMarkerStyle { get; set; }

#Property Value

Type Default Description
DevExpress.XtraScheduler.TimeMarkerStyle Default

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:

schedulerControl.DayView.TimeMarkerStyle = TimeMarkerStyle.Line | TimeMarkerStyle.Appearance;

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

Time marker style

Time Marker visibility is managed by the TimeMarkerVisibility property.

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

See Also