Skip to main content

ASPxSchedulerOptionsView.ResourceColorFillArea Property

Specifies what parts of a grouped view are filled with resource colors.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

[DefaultValue(ResourceColorFillArea.TimeCells)]
public ResourceColorFillArea ResourceColorFillArea { get; set; }

Property Value

Type Default Description
ResourceColorFillArea TimeCells

One of the enumeration values.

Available values:

Name Description
TimeCells

Time Cells are filled with resource colors.

ResourceHeader

Resource Headers are filled with resource colors.

Both

Both Time Cells and Resource Headers are filled with resource colors.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ResourceColorFillArea
ASP.NET MVC Extensions SchedulerSettings
.OptionsView .ResourceColorFillArea
ASP.NET Web Forms Controls ASPxScheduler
.OptionsView .ResourceColorFillArea

Remarks

In themes, the ResourceColorFillArea property value is specified in a corresponding skin file and the property value specified in page markup is overridden by the skin settings. In this case, you can change the ResourceColorFillArea property value in the Page.Load event handler.

protected void Page_Load(object sender, EventArgs e) {  
    ASPxScheduler1.OptionsView.ResourceColorFillArea = ResourceColorFillArea.TimeCells;  
}  
See Also