Skip to main content

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

DayViewBase.VisibleTime Property

Gets or sets the visible time interval of a day. This is a bindable property.

Namespace: DevExpress.Maui.Scheduler

Assembly: DevExpress.Maui.Scheduler.dll

NuGet Package: DevExpress.Maui.Scheduler

#Declaration

C#
public TimeSpanRange VisibleTime { get; set; }

#Property Value

Type Default Description
TimeSpanRange 1.00:00:00

An object that specifies a time interval visible within a day.

#Remarks

The VisibleTime property allows you to limit the time visible in the scheduler’s view.

Note

The ShowWorkTimeOnly property has priority over the VisibleTime setting. You can use the VisibleTime property to specify the scheduler view’s visible time interval, only if ShowWorkTimeOnly is set to false.

The View provides the capability to convert a string to this property’s value in XAML. The string should have the "<Start_time_value>-<End_time_value>" format. For example, "6:00:00-15:00:00".

See Also