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

TimeIndicatorDisplayOptions.ShowOverAppointment Property

Gets or sets whether the Time Indicator is displayed over appointments in the view.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.2.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool ShowOverAppointment { get; set; }

Property Value

Type Default Description
Boolean **false**

True to display a current time line over appointments; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowOverAppointment
DayView
.TimeIndicatorDisplayOptions.ShowOverAppointment
FullWeekView
.TimeIndicatorDisplayOptions.ShowOverAppointment
GanttView
.TimeIndicatorDisplayOptions.ShowOverAppointment
TimelineView
.TimeIndicatorDisplayOptions.ShowOverAppointment
WorkWeekView
.TimeIndicatorDisplayOptions.ShowOverAppointment

Example

scheduler.DayView.TimeRulers.Add(new DevExpress.XtraScheduler.TimeRuler());

// Display the time marker if the view contains a current date.
scheduler.DayView.TimeMarkerVisibility = TimeMarkerVisibility.TodayView;
// Display the time indicator in the current date's column only.
scheduler.DayView.TimeIndicatorDisplayOptions.Visibility = TimeIndicatorVisibility.CurrentDate;
// Show the time indicator on top when it overlaps an appointment.
scheduler.DayView.TimeIndicatorDisplayOptions.ShowOverAppointment = true;
// Hide the time marker in the second time ruler.
scheduler.DayView.TimeRulers[1].TimeMarkerVisibility = TimeMarkerVisibility.Never;

scheduler.ActiveViewType = SchedulerViewType.Day;
scheduler.DayView.DayCount = 3;
scheduler.DayView.TopRowTime = DateTime.Now.AddHours(-1).TimeOfDay;
scheduler.Start = DateTime.Today.AddDays(-1);

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowOverAppointment property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also