Skip to main content

SchedulerViewBase.ResourcesPerPage Property

Gets or sets the number of resources shown simultaneously on a screen.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public int ResourcesPerPage { get; set; }

#Property Value

Type Description
Int32

An integer value which specifies the number of resources.

#Remarks

When the scheduler control's appointments are assigned to resources, they can be grouped by resources and by dates (SchedulerViewBase.GroupType and SchedulerControl.GroupType). In this instance, if there are a lot of resources in the ResourceStorage, it may make the scheduling area very crowded. To avoid this, you can use the ResourcesPerPage property to specify the number of resources shown on the screen at the same time.

If the ResourcesPerPage property value is set to 0, then all resources available in the ResourceStorage, and that have their Resource.Visible property set to true will be shown within the scheduler control.

NOTE

An end-user can control the number of resources per page at runtime, via the resource navigator.

See Also