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

DayViewBase.VisibleTime Property

Gets or sets the visible time interval of a day.

Namespace: DevExpress.XamarinForms.Scheduler

Assembly: DevExpress.XamarinForms.Scheduler.dll

Declaration

public TimeSpanRange VisibleTime { get; set; }

Property Value

Type Description
TimeSpanRange

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