Skip to main content

BootstrapScheduler.Views Property

Contains the settings of the Views that are used to represent information within the BootstrapScheduler control.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapSchedulerViewRepository Views { get; }

Property Value

Type Description
BootstrapSchedulerViewRepository

A BootstrapSchedulerViewRepository object which stores the settings of the calendar Views.

Remarks

The BootstrapScheduler control provides a number of calendar Views that are used to represent information on appointments in a specific manner. You can use the Views property to access the settings of all the available views. For instance, the BootstrapSchedulerViewRepository.DayView property contains the settings of the Day View that allows end-users to schedule and display appointments by day.

The BootstrapScheduler object also has a number of properties which are synchronized with the corresponding properties (Views) of the BootstrapSchedulerViewRepository object. Although these properties are not visible via the Properties window at design time, they can be accessed via code. For instance, the BootstrapScheduler.DayView property is synchronized with the BootstrapSchedulerViewRepository.DayView property.

The currently selected View is determined by the ASPxScheduler.ActiveViewType property. Use this property to select another View.

See Also